You've already forked AstralRinth
forked from didirus/AstralRinth
23 lines
348 B
Plaintext
23 lines
348 B
Plaintext
.member {
|
|
display: flex;
|
|
grid-gap: 1rem;
|
|
|
|
border-radius: var(--rounded-sm);
|
|
padding: 0.5rem;
|
|
transition: background-color 0.1s ease-in-out;
|
|
|
|
&:hover {
|
|
background-color: var(--color-button-bg);
|
|
}
|
|
|
|
&__info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: 0.5rem;
|
|
|
|
&__link {
|
|
font-weight: var(--font-weight-medium);
|
|
}
|
|
}
|
|
}
|