sendou.ink/app/components/layout/UserItem.module.css
2026-01-19 18:55:54 +01:00

41 lines
716 B
CSS

.userItem {
outline-offset: 1px;
border-radius: 100%;
}
.userItem:focus-visible {
outline: var(--field-focus-ring);
}
.avatar {
width: var(--field-height-small);
height: var(--field-height-small);
color: transparent;
}
.logInButton {
display: flex;
height: var(--field-height-small);
align-items: center;
justify-content: center;
padding: 0.5rem;
border: 2px solid;
border-color: var(--color-text-accent);
border-radius: var(--radius-box);
background-color: transparent;
color: inherit;
cursor: pointer;
font-size: var(--fonts-xs);
font-weight: var(--bold);
gap: var(--s-2);
text-decoration: none;
}
.logInButton > svg {
width: 1rem;
}
.logInButton:active {
transform: translateY(1px);
}