feat(language-switch-in-footer): make footer segment class flexbox

This commit is contained in:
2026-06-01 18:09:48 +02:00
parent 9dfefdba1c
commit 2f59d62e6a
+2 -7
View File
@@ -41,10 +41,8 @@ const copyrightPeriod =
<LanguageSwitchButton />
</div>
<div class="footer-segment">
<div class="copyright-note">
&copy; {{ copyrightPeriod }} Seekra
</div>
</div>
</footer>
</template>
@@ -54,6 +52,8 @@ const copyrightPeriod =
}
.footer-segment {
display: flex;
justify-content: center;
padding: var(--padding-y);
background-color: var(--light-bg);
border-top: 1px solid var(--border);
@@ -62,9 +62,4 @@ const copyrightPeriod =
.global-footer a {
color: var(--dark);
}
.copyright-note {
display: flex;
justify-content: center;
}
</style>