mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 00:55:37 +01:00
21 lines
279 B
CSS
21 lines
279 B
CSS
.timeline {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.row {
|
|
display: grid;
|
|
grid-template-columns: max-content max-content 1fr;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.time {
|
|
color: var(--font-color200);
|
|
width: 150px;
|
|
}
|
|
|
|
.header {
|
|
font-weight: bold;
|
|
}
|