sendou.ink/app/features/user-page/components/SubPageHeader.module.css
Kalle 77978c450f
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
New user page (#2812)
Co-authored-by: hfcRed <hfcred@gmx.net>
2026-02-16 19:26:57 +02:00

64 lines
904 B
CSS

.subPageHeader {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--s-4);
padding-block: var(--s-4);
flex-wrap: wrap;
}
.leftSection {
display: flex;
align-items: center;
gap: var(--s-2);
}
.actions {
display: flex;
align-items: center;
gap: var(--s-2);
flex-wrap: wrap;
}
.backButton {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 100%;
background-color: var(--bg);
border: 2px solid var(--bg-lightest);
color: var(--text);
transition: all 0.2s;
}
.backButton svg {
min-width: 30px;
}
.backButton:hover {
background-color: var(--bg-lightest);
}
.backIcon {
width: 24px;
height: 24px;
}
.avatar {
border-radius: 50%;
}
.userInfo {
display: flex;
align-items: center;
gap: var(--s-2);
color: inherit;
}
.username {
font-weight: var(--semi-bold);
font-size: var(--fonts-sm);
}