diff --git a/src/components/StationsView/StationTable.vue b/src/components/StationsView/StationTable.vue
index e5dd5a9..10f527d 100644
--- a/src/components/StationsView/StationTable.vue
+++ b/src/components/StationsView/StationTable.vue
@@ -48,10 +48,7 @@
@keydown.space="openForumSite($event, station.generalInfo?.url)"
tabindex="0"
>
-
+ |
{{ station.generalInfo.project }}
{{ station.name }}
|
@@ -144,22 +141,16 @@
-
-
-
-
-
+ v-html="getControlTypeAbbrev(station.generalInfo.controlType)"
+ >
+
+
+
+
+
+
+
+ |
-
+
+
|
@@ -414,7 +411,8 @@ tr.station {
@include smallScreen() {
margin: 0;
- padding: 0.1em 0.5em;
+ padding: 0.3em 0.5em;
+ font-size: 1.1em;
}
}
}
@@ -463,20 +461,26 @@ td.station {
&_info {
display: flex;
+ align-items: center;
justify-content: center;
+ /* Images */
.icon-info {
- font-size: 0.8rem;
- width: 2rem;
- height: 2rem;
+ display: flex;
+ justify-content: center;
+ align-items: center;
- line-height: 2rem;
+ width: 32px;
+ height: 32px;
+ font-size: 12px;
margin: 0 0.2em;
- vertical-align: middle;
outline: 2px solid #444;
border-radius: 0.5em;
+
+ @include smallScreen() {
+ }
}
}
@@ -519,4 +523,5 @@ td.station {
background: #333;
}
+
diff --git a/src/components/TrainsView/TrainSchedule.vue b/src/components/TrainsView/TrainSchedule.vue
index 72f101f..1058d28 100644
--- a/src/components/TrainsView/TrainSchedule.vue
+++ b/src/components/TrainsView/TrainSchedule.vue
@@ -1,4 +1,3 @@
-p
@@ -51,7 +50,7 @@ p
-
+
@@ -194,7 +193,7 @@ $stopNameClr: #22a8d1;
}
ul.stock-list {
display: flex;
- align-items: end;
+ align-items: flex-end;
overflow-x: auto;
padding-bottom: 1em;
@@ -203,7 +202,6 @@ ul.stock-list {
color: #aaa;
font-size: 0.9em;
}
-
}
.schedule-wrapper {
|