Skip to content

Commit c1cc259

Browse files
committed
fix: make text columns full-height
1 parent eadf5c6 commit c1cc259

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontend/src/components/MainSection.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,17 @@ p {
242242
243243
.left-column {
244244
background-color: #d6f5d3;
245+
height: 100vh;
246+
position: sticky;
247+
top: 0;
248+
overflow-y: auto;
245249
}
246250
247251
248252
.sticky-left {
249253
position: sticky;
250254
top: 0px;
251-
height: fit-content;
255+
height: 100vh;
252256
align-self: flex-start;
253257
}
254258
</style>

0 commit comments

Comments
 (0)