Reduce portal header brand on mobile

This commit is contained in:
2026-06-10 13:50:33 +02:00
parent 7e86135d14
commit 3ffeb925f9
2 changed files with 6 additions and 4 deletions
-4
View File
@@ -21,10 +21,6 @@ body {
body { body {
padding: var(--spacing-small); padding: var(--spacing-small);
} }
.sg-brand-title {
font-size: calc(var(--font-size-brand) * 0.8);
}
} }
section { section {
+6
View File
@@ -66,3 +66,9 @@
gap: var(--spacing-small) var(--spacing-large); gap: var(--spacing-small) var(--spacing-large);
} }
} }
@media (max-width: 48rem) {
.sg-portal-header__brand {
font-size: calc(var(--font-size-portal-header-brand) * 0.8);
}
}