mirror of
https://github.com/umami-software/umami.git
synced 2026-02-15 01:55:36 +01:00
43 lines
649 B
CSS
43 lines
649 B
CSS
.week {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.day {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
gap: 1px;
|
|
position: relative;
|
|
}
|
|
|
|
.cell {
|
|
display: flex;
|
|
background-color: var(--base75);
|
|
width: 20px;
|
|
height: 20px;
|
|
margin: auto;
|
|
border-radius: 100%;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.hour {
|
|
font-weight: 700;
|
|
color: var(--font-color300);
|
|
height: 20px;
|
|
}
|
|
|
|
.block {
|
|
background-color: var(--primary400);
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 100%;
|
|
}
|