umami/components/pages/reports/retention/RetentionTable.module.css

49 lines
678 B
CSS
Raw Normal View History

2023-08-13 03:13:11 +00:00
.table {
display: flex;
flex-direction: column;
}
.header {
2023-08-16 17:50:28 +00:00
font-weight: 700;
2023-08-13 03:13:11 +00:00
}
.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);
}
2023-08-15 05:36:18 +00:00
.date {
2023-08-16 17:50:28 +00:00
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;
2023-08-15 05:36:18 +00:00
}