Poprawki kodu. Dodano interaktywność rozkładów jazdy.

This commit is contained in:
2020-09-06 21:55:55 +02:00
parent 33b3837bd8
commit 5adb990361
11 changed files with 236 additions and 61 deletions
+6 -1
View File
@@ -30,7 +30,7 @@
>
<td
class="item-station-name"
:class="{'default-station': station.default, 'online': station.online}"
:class="{'default-station': station.default, 'online': station.online, 'station-unavailable': station.unavailable}"
>{{station.stationName}}</td>
<td class="item-station-level">
@@ -329,4 +329,9 @@ export default class StationTable extends styleMixin {
}
}
}
.station-unavailable {
color: #ff1e1e;
font-weight: bold;
}
</style>