chore: timetable warnings; locale test

This commit is contained in:
2025-01-31 02:23:12 +01:00
parent 518b2da700
commit 984bbccaf5
7 changed files with 42 additions and 16 deletions
+5 -3
View File
@@ -1,13 +1,15 @@
<template>
<main class="grid print:block p-3 mx-auto max-w-[800px] h-screen grid-rows-[auto_1fr_20px] gap-1">
<main class="grid print:block p-3 mx-auto max-w-[800px] h-screen grid-rows-[auto_auto_1fr] gap-1">
<TimetableSelect />
<TimetableWarnings />
<TrainTimetable />
<MainBottom />
<!-- <MainBottom /> -->
</main>
</template>
<script setup lang="ts">
import TimetableSelect from '../Timetable/TimetableSelect.vue';
import TimetableWarnings from "../Timetable/TimetableWarnings.vue";
import TrainTimetable from '../Timetable/TrainTimetable.vue';
import MainBottom from './MainBottom.vue';
// import MainBottom from './MainBottom.vue';
</script>