Fix logo position on iOS
All checks were successful
Deploy Spot / deploy (push) Successful in 38s

This commit is contained in:
2026-06-07 13:22:52 +02:00
parent ff3fac2ab9
commit 76fdc4be43
2 changed files with 3 additions and 8 deletions

View File

@@ -80,7 +80,7 @@
sass-color.adjust($color, $alpha: -0.3) $pos2 sass-color.adjust($color, $alpha: -0.3) $pos2
), ),
url(../images/logo_bg.webp) url(../images/logo_bg.webp)
85% 80% / 100%; 85% 85% / 100%;
} }
*:focus { *:focus {

View File

@@ -11,19 +11,13 @@
} }
.settings-header { .settings-header {
display: flex;
flex-direction: column;
align-items: center;
gap: var.$elem-spacing;
padding: var.$block-spacing; padding: var.$block-spacing;
border-radius: var.$block-radius var.$block-radius; border-radius: var.$block-radius var.$block-radius;
@include common.topo-bg(radial, circle farthest-side at 50% 50%, color.$default-bg-light, 40%); @include common.topo-bg(radial, circle farthest-side at 50% 50%, color.$default-bg-light, 40%);
img { img {
display: block; display: block;
flex: 0 0 auto; margin: auto;
height: auto;
max-width: 100%;
object-fit: contain; object-fit: contain;
&.logo-icon { &.logo-icon {
@@ -31,6 +25,7 @@
} }
&.logo-title { &.logo-title {
width: 70%; width: 70%;
margin-top: var.$elem-spacing;
} }
} }