Files
umami/src/app/(main)/websites/[websiteId]/sessions/SessionsWeekly.module.css
2024-08-18 00:15:20 -07:00

43 lines
611 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: start;
justify-content: start;
gap: 1px;
position: relative;
}
.cell {
display: flex;
background-color: var(--base100);
width: 20px;
height: 20px;
margin: auto;
align-items: start;
}
.hour {
font-weight: 700;
color: var(--font-color300);
height: 20px;
}
.block {
background-color: var(--primary400);
width: 20px;
height: 20px;
border-radius: 3px;
}