diff --git a/src/components/SceneryView/SceneryHeader.vue b/src/components/SceneryView/SceneryHeader.vue
index aa50f76..cc34997 100644
--- a/src/components/SceneryView/SceneryHeader.vue
+++ b/src/components/SceneryView/SceneryHeader.vue
@@ -1,17 +1,20 @@
@@ -36,25 +39,35 @@ export default defineComponent({
.info-header {
padding-top: 2em;
+}
- & > .scenery-name {
- font-weight: bold;
- color: $accentCol;
+.scenery-name {
+ font-weight: bold;
+ color: $accentCol;
- font-size: 3.5em;
+ position: relative;
- text-transform: uppercase;
+ font-size: 3.5em;
+ margin-top: 0.25em;
- @include smallScreen() {
- font-size: 2.75em;
- }
- }
+ text-transform: uppercase;
- & > .scenery-hash {
- line-height: 0.8em;
- color: #aaa;
-
- font-size: 1.5em;
+ @include smallScreen() {
+ font-size: 2.75em;
}
}
+
+.scenery-hash {
+ color: #aaa;
+ font-size: 0.3em;
+
+ position: absolute;
+ top: 0;
+
+}
+
+.scenery-authors {
+ color: #999;
+}
+
diff --git a/src/components/StationsView/StationFilterCard.vue b/src/components/StationsView/StationFilterCard.vue
index 8ac2628..33794f3 100644
--- a/src/components/StationsView/StationFilterCard.vue
+++ b/src/components/StationsView/StationFilterCard.vue
@@ -56,7 +56,7 @@
@@ -125,6 +125,7 @@ export default defineComponent({
saveOptions: false,
STORAGE_KEY: 'options_saved',
+ authorsInputValue: '',
minimumHours: 0,
currentRegion: { id: '', value: '' },
@@ -174,7 +175,7 @@ export default defineComponent({
},
handleAuthorsInput(e: Event) {
- if ((e.target as HTMLInputElement).value.length < 3) return;
+ // if ((e.target as HTMLInputElement).value.length < 3) return;
clearTimeout(this.delayInputTimer);
@@ -244,6 +245,8 @@ export default defineComponent({
StorageManager.setNumericValue(slider.name, slider.value);
});
+ this.authorsInputValue = '';
+
this.minimumHours = 0;
this.changeNumericFilterValue('onlineFromHours', this.minimumHours, true);