mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 05:37:20 +01:00
31 lines
302 B
CSS
31 lines
302 B
CSS
.table th,
|
|
.table td {
|
|
flex: 2;
|
|
}
|
|
|
|
.cell {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.header:first-child,
|
|
.cell:first-child {
|
|
min-width: 320px;
|
|
}
|
|
|
|
.input {
|
|
flex: 2;
|
|
}
|
|
|
|
.cell:last-child {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 12px;
|
|
}
|
|
|
|
.empty {
|
|
min-height: 300px;
|
|
}
|