37 lines
547 B
CSS
Raw Normal View History

.list-wrapper {
2025-01-26 00:53:17 +01:00
width: 100%;
max-width: 40em;
align-self: center;
display: flex;
flex-direction: column;
gap: 1em;
}
.list-header {
display: flex;
justify-content: flex-end;
gap: 1em;
}
.list-header button {
padding: 0.4em 1.2em;
}
.list {
display: flex;
2025-01-26 00:53:17 +01:00
gap: 0.8em;
flex-direction: column;
}
.list li {
display: flex;
padding: 0.8em 1.2em;
marker: none;
gap: 0.8em;
border: solid var(--dark4) 1px;
2025-02-02 18:47:35 +01:00
align-items: center;
2025-01-26 00:53:17 +01:00
}
.list li .actions {
margin-left: auto;
}