mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
27 lines
238 B
CSS
27 lines
238 B
CSS
|
.table th,
|
||
|
.table td {
|
||
|
flex: 2;
|
||
|
}
|
||
|
|
||
|
.cell {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.input {
|
||
|
flex: 2;
|
||
|
}
|
||
|
|
||
|
.cell:last-child {
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
|
||
|
.actions {
|
||
|
display: flex;
|
||
|
gap: 12px;
|
||
|
}
|
||
|
|
||
|
.empty {
|
||
|
min-height: 300px;
|
||
|
}
|