Improve sidebar spacing and layout - push sidebar right, add visual divider for next tracks

This commit is contained in:
nmemmert
2026-05-12 13:45:41 -04:00
parent 3e38785709
commit af0c33282a
+19 -2
View File
@@ -1180,9 +1180,10 @@
.study-tracks-with-sidebar { .study-tracks-with-sidebar {
display: grid; display: grid;
grid-template-columns: 1fr 340px; grid-template-columns: 1fr 380px;
gap: 2.5rem; gap: 4rem;
align-items: start; align-items: start;
width: 100%;
} }
.study-tracks-main { .study-tracks-main {
@@ -1197,6 +1198,22 @@
border-radius: 16px; border-radius: 16px;
padding: 1.5rem; padding: 1.5rem;
height: fit-content; height: fit-content;
margin-left: auto;
}
#study-tracks {
width: 100%;
display: block;
}
#study-tracks ~ .section-study-module {
clear: both;
width: 100%;
display: block;
margin-top: 3rem;
padding-top: 3rem;
border-top: 1px solid rgba(201, 168, 76, 0.15);
background: linear-gradient(180deg, rgba(0,0,0,0), rgba(201, 168, 76, 0.03));
} }
.study-signup-sidebar-header { .study-signup-sidebar-header {