chore: displaying warning notes in driver view & journal timetables

This commit is contained in:
2024-09-07 17:28:05 +02:00
parent b8f135a454
commit 4177c6e5f4
11 changed files with 176 additions and 65 deletions
@@ -5,9 +5,9 @@
<div @click="toggleExtraInfo" style="cursor: pointer">
<!-- Route -->
<span class="entry-route">
<div class="entry-route">
<b>{{ timetableEntry.route.replace('|', ' - ') }}</b>
</span>
</div>
<hr />
@@ -134,8 +134,16 @@ export default defineComponent({
</script>
<style lang="scss" scoped>
@import '../../../styles/responsive.scss';
.timetable-history-entry {
background-color: #1a1a1a;
padding: 1em;
}
@include smallScreen {
.entry-route {
text-align: center;
}
}
</style>