fix: stats header font size

This commit is contained in:
2025-09-14 14:38:17 +02:00
parent 6c3af0a8d3
commit e0548e593c
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -14,10 +14,10 @@
<transition name="dropdown-anim"> <transition name="dropdown-anim">
<div class="dropdown_wrapper" v-if="showDropdown"> <div class="dropdown_wrapper" v-if="showDropdown">
<div> <div>
<h1 class="stats-title text--primary"> <h2 class="stats-title text--primary">
<img src="/images/icon-stats.svg" alt="Open filters icon" height="28" /> <img src="/images/icon-stats.svg" alt="Open filters icon" height="28" />
{{ $t('station-stats.title') }} {{ $t('station-stats.title') }}
</h1> </h2>
<hr style="margin: 0.5em 0" /> <hr style="margin: 0.5em 0" />
@@ -245,7 +245,7 @@ export default defineComponent({
@use '../../styles/badge'; @use '../../styles/badge';
@use '../../styles/responsive'; @use '../../styles/responsive';
h1.stats-title img { .stats-title img {
vertical-align: text-bottom; vertical-align: text-bottom;
} }
@@ -279,7 +279,7 @@ h1.stats-title img {
} }
@include responsive.smallScreen { @include responsive.smallScreen {
h1.stats-title { .stats-title {
text-align: center; text-align: center;
} }
+4 -4
View File
@@ -13,10 +13,10 @@
<transition name="dropdown-anim"> <transition name="dropdown-anim">
<div class="dropdown_wrapper" v-if="showOptions"> <div class="dropdown_wrapper" v-if="showOptions">
<h1 class="text--primary"> <h2 class="stats-title text--primary">
<img src="/images/icon-stats.svg" alt="Open filters icon" height="28" /> <img src="/images/icon-stats.svg" alt="Open filters icon" height="28" />
{{ $t('train-stats.title') }} {{ $t('train-stats.title') }}
</h1> </h2>
<hr style="margin: 0.5em 0" /> <hr style="margin: 0.5em 0" />
@@ -229,7 +229,7 @@ export default defineComponent({
@use '../../styles/badge'; @use '../../styles/badge';
@use '../../styles/responsive'; @use '../../styles/responsive';
h1 img { .stats-title img {
vertical-align: text-bottom; vertical-align: text-bottom;
} }
@@ -257,7 +257,7 @@ h3 {
text-align: center; text-align: center;
} }
h1 { .stats-title {
text-align: center; text-align: center;
} }
} }