20 lines
289 B
CSS
20 lines
289 B
CSS
![]() |
.user-list {
|
||
|
display: grid;
|
||
|
grid-template-columns: 2fr 1fr auto auto auto;
|
||
|
grid-row-gap: 0.5rem;
|
||
|
}
|
||
|
|
||
|
.user-list > * {
|
||
|
width: auto;
|
||
|
}
|
||
|
|
||
|
.user-list > .button {
|
||
|
place-self: center;
|
||
|
}
|
||
|
|
||
|
.user-list p {
|
||
|
margin-top: .5em;
|
||
|
margin-bottom: .5em;
|
||
|
font-weight: bold;
|
||
|
}
|