Responsive styles for session page.

This commit is contained in:
Mike Cao 2024-07-30 22:10:32 -07:00
parent b3e6e52473
commit 10f65cae68
7 changed files with 18 additions and 14 deletions

View file

@ -1,6 +1,6 @@
.page {
display: grid;
grid-template-columns: 300px 1fr max-content;
grid-template-columns: max-content 1fr max-content;
margin-bottom: 40px;
position: relative;
}
@ -11,6 +11,7 @@
align-items: center;
justify-content: flex-start;
gap: 20px;
width: 300px;
padding-right: 20px;
border-right: 1px solid var(--base300);
position: relative;
@ -25,6 +26,7 @@
}
.data {
width: 300px;
border-left: 1px solid var(--base300);
padding-left: 20px;
position: relative;
@ -40,5 +42,6 @@
.sidebar,
.data {
border: 0;
width: auto;
}
}