diff --git a/src/components/Global/ProgressBar.vue b/src/components/Global/ProgressBar.vue
index f2a395f..b2694d6 100644
--- a/src/components/Global/ProgressBar.vue
+++ b/src/components/Global/ProgressBar.vue
@@ -43,7 +43,6 @@ export default defineComponent({
width: 6em;
height: 1em;
- margin: 0.5em 0;
.bar-fg,
.bar-bg {
diff --git a/src/components/StationsView/StationFilterCard.vue b/src/components/StationsView/StationFilterCard.vue
index 876e3ed..817970f 100644
--- a/src/components/StationsView/StationFilterCard.vue
+++ b/src/components/StationsView/StationFilterCard.vue
@@ -657,10 +657,6 @@ h3.section-header {
}
@include smallScreen {
- .card_controls > button.card-button > p {
- display: none;
- }
-
.slider {
flex-wrap: wrap;
justify-content: center;
diff --git a/src/components/TrainsView/StopLabel.vue b/src/components/TrainsView/StopLabel.vue
index 83ef967..15731bc 100644
--- a/src/components/TrainsView/StopLabel.vue
+++ b/src/components/TrainsView/StopLabel.vue
@@ -107,18 +107,6 @@ s {
flex-wrap: wrap;
align-items: center;
- &[data-minor='true'] {
- .date {
- display: none;
- }
-
- .name {
- background: none;
- color: #aaa;
- padding: 0;
- }
- }
-
.name {
background: $stopNameClr;
border-radius: 0.5em 0 0 0.5em;
@@ -141,6 +129,18 @@ s {
}
}
+ &[data-minor='true'] {
+ .date {
+ display: none;
+ }
+
+ .name {
+ background: none;
+ color: #aaa;
+ padding: 0;
+ }
+ }
+
.stop {
&[data-stop-types='ph'],
&[data-stop-types='ph-pm'],
@@ -156,6 +156,10 @@ s {
}
}
+.stop-label > a {
+ z-index: 0;
+}
+
.stop .arrival {
&[data-status='confirmed'][data-status-delayed='true'] {
span {
diff --git a/src/components/TrainsView/TrainInfo.vue b/src/components/TrainsView/TrainInfo.vue
index 822bf49..718ffad 100644
--- a/src/components/TrainsView/TrainInfo.vue
+++ b/src/components/TrainsView/TrainInfo.vue
@@ -76,21 +76,22 @@