chore: code structure

This commit is contained in:
2024-08-03 01:53:36 +02:00
parent c8964dc20f
commit 0ee90357aa
5 changed files with 243 additions and 301 deletions
@@ -19,7 +19,7 @@
{{ $t('scenery.history-list-empty') }}
</div>
<div v-else class="history-list">
<div v-else class="journal-list">
<div v-for="timetableHistory in historyList" :key="timetableHistory.id">
<span>
<div>
@@ -219,14 +219,14 @@ export default defineComponent({
}
}
.history-list {
.journal-list {
display: flex;
flex-direction: column;
gap: 0.5em;
text-align: left;
}
.history-list > div {
.journal-list > div {
display: flex;
justify-content: space-between;
align-items: center;
@@ -235,7 +235,7 @@ export default defineComponent({
line-height: 1.5em;
}
.history-list > div > button > img {
.journal-list > div > button > img {
width: 2em;
transform: rotate(180deg);
}