diondiondion 7c9d73d1cb [Glitch] Update design of collection accounts editor
Port 5a38246ee8dffad6789fb4a3a7723477d2d97b4c to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2026-04-17 18:10:54 +02:00

61 lines
885 B
SCSS

.header {
display: flex;
flex-direction: column;
gap: 12px;
}
.step {
font-size: 13px;
color: var(--color-text-secondary);
}
.title {
font-size: 17px;
font-weight: 500;
line-height: 1.2;
margin-top: 4px;
}
.description {
font-size: 15px;
margin-top: 8px;
}
.listHeading {
margin-bottom: 8px;
font-size: 15px;
font-weight: 500;
line-height: 1.2;
}
/* Ensure sticky footer isn't covered by mobile bottom nav */
.form {
--bottom-spacing: 0;
padding-bottom: 0;
@media (width < 760px) {
--bottom-spacing: var(--mobile-bottom-nav-height);
}
}
.stickyFooter {
position: sticky;
bottom: var(--bottom-spacing);
margin-top: -16px;
padding: 16px;
background-image: linear-gradient(
to bottom,
transparent,
var(--color-bg-primary) 24px
);
}
.formFieldStack {
gap: 16px;
}
.scrollableWrapper {
margin-inline: -16px;
}