fix(splash): keep login button text on one line

This commit is contained in:
2026-06-17 13:06:56 +08:00
parent c3f2f8d954
commit cda76a1651
@@ -48,6 +48,7 @@
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
flex: 0 0 auto;
box-shadow: 0 0 10px rgba(248, 89, 168, 0.3); box-shadow: 0 0 10px rgba(248, 89, 168, 0.3);
} }
@@ -61,4 +62,19 @@
font-size: var(--font-size-xxl); font-size: var(--font-size-xxl);
font-weight: 700; font-weight: 700;
color: #ffffff; color: #ffffff;
white-space: nowrap;
}
@media (max-width: 360px) {
.wrapper {
gap: var(--spacing-md);
}
.separator {
width: var(--spacing-md);
}
.facebookButton {
padding: 0 var(--spacing-lg);
}
} }