Files
sendou.ink/app/features/availability/components/ScheduleNudge.module.css
Kalle 23875c7c67
Some checks failed
E2E Tests / e2e (push) Has been cancelled
Tests and checks on push / run-checks-and-tests (push) Has been cancelled
Updates translation progress / update-translation-progress-issue (push) Has been cancelled
Custom theme improvements (#3410)
Co-authored-by: hfcRed <hfcred@gmx.net>
2026-09-23 17:43:48 +03:00

38 lines
759 B
CSS

.container {
display: flex;
align-items: center;
gap: var(--s-2);
padding: var(--s-1-5) var(--s-2);
border-bottom: 1.5px solid var(--color-border);
}
/** Flush against the events header, bleeding past the sidebar's own padding. */
.sidebar {
margin-block-start: calc(-1 * var(--s-2));
margin-inline: calc(-1 * var(--s-1-5));
}
/** Same, for the mobile events panel. */
.panel {
margin-block-start: calc(-1 * var(--s-2));
margin-inline: calc(-1 * var(--s-2));
}
.link {
display: flex;
align-items: center;
gap: var(--s-2);
font-size: var(--font-2xs);
font-weight: var(--weight-bold);
color: var(--color-fg-accent);
&:hover {
text-decoration: underline;
}
}
.dismissButton {
margin-inline-start: auto;
color: var(--color-text-high);
}