sendou.ink/old/scenes/layout/styles/UserItem.module.css
2021-11-23 18:24:02 +02:00

33 lines
618 B
CSS

.logInButton {
display: flex;
height: var(--item-size);
align-items: center;
justify-content: center;
padding: 0.5rem;
border: 2px solid;
border-color: var(--bg-lighter);
background-color: transparent;
border-radius: var(--rounded);
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);
}
.avatar {
width: var(--item-size);
min-width: var(--item-size);
height: var(--item-size);
border-radius: var(--rounded);
}