This commit is contained in:
2023-10-03 21:51:00 +02:00
parent 5b35fac512
commit d5649d221b
3 changed files with 4 additions and 5 deletions
+2 -3
View File
@@ -82,9 +82,8 @@ export default defineComponent({
display: flex; display: flex;
align-items: flex-end; align-items: flex-end;
overflow: auto; overflow: auto;
margin: 1em auto; margin: 0 auto;
padding: 1em 0;
padding-bottom: 1em;
} }
ul > li > span { ul > li > span {
@@ -40,7 +40,7 @@
</div> </div>
<!-- <StockList :trainStockList="currentHistoryIndex == 0 ? timetable.stockString : stockHistory[currentHistoryIndex].stockString).split(';')" /> --> <!-- <StockList :trainStockList="currentHistoryIndex == 0 ? timetable.stockString : stockHistory[currentHistoryIndex].stockString).split(';')" /> -->
<StockList :trainStockList="timetable.stockString?.split(';')" /> <StockList :trainStockList="(currentHistoryIndex == 0 ? timetable.stockString : stockHistory[currentHistoryIndex].stockString).split(';') " />
<!-- <ul class="stock-list"> <!-- <ul class="stock-list">
<li <li
+1 -1
View File
@@ -155,7 +155,7 @@ $stopNameClr: #22a8d1;
} }
.train-schedule { .train-schedule {
padding: 0 0.25em; padding: 0 1em;
} }
.schedule-wrapper { .schedule-wrapper {