[Update] Config Page: Side menu: Add scroll bar.

This commit is contained in:
Sakamoto Shiina
2025-01-30 21:19:50 +09:00
parent 87b890652b
commit e39f77704e
2 changed files with 21 additions and 14 deletions

View File

@@ -1,10 +1,15 @@
.container {
width: var(--config_page_sidebar_width);
flex-shrink: 0;
padding: 0rem 0rem 5.8rem 1.2rem;
}
.scroll_container {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 0rem 0rem 5.8rem 1.2rem;
overflow-y: auto;
height: 100%;
max-height: 60rem;
}