mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-27 21:00:12 +01:00
21 lines
341 B
CSS
21 lines
341 B
CSS
.list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 12px;
|
|
border: 1px solid var(--base400);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 1px 1px 1px var(--base400);
|
|
}
|
|
|
|
.icon {
|
|
align-self: center;
|
|
}
|