Session details screen.

This commit is contained in:
Mike Cao 2024-07-29 19:09:13 -07:00
parent c3c3b46ef6
commit f32bf0a2e0
21 changed files with 252 additions and 33 deletions

View file

@ -1,18 +1,27 @@
.page {
display: grid;
grid-template-columns: 300px 1fr;
grid-template-columns: 300px 1fr max-content;
margin-bottom: 40px;
}
.sidebar {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
justify-content: flex-start;
gap: 20px;
padding-right: 20px;
border-right: 1px solid var(--base300);
}
.content {
padding: 0 20px;
}
.stats {
display: flex;
flex-direction: column;
gap: 20px;
border-left: 1px solid var(--base300);
padding-left: 20px;
}