mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-09 02:45:39 +01:00
49 lines
678 B
CSS
49 lines
678 B
CSS
.table {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.header {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1px;
|
|
margin-bottom: 1px;
|
|
}
|
|
|
|
.cell {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 60px;
|
|
height: 60px;
|
|
background: var(--blue100);
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.date {
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 160px;
|
|
}
|
|
|
|
.visitors {
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 80px;
|
|
}
|
|
|
|
.day {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 60px;
|
|
height: 60px;
|
|
text-align: center;
|
|
font-size: var(--font-size-sm);
|
|
font-weight: 400;
|
|
}
|