feat: added scroll bar to simple program

note that it will take quite a lot of items
for the simple prog to be filled up, only when it's
overflown the scroll bar will appear

ref: N25B-400
This commit is contained in:
Pim Hutting
2026-01-08 15:19:38 +01:00
parent 39f013c47f
commit 71443c7fb6
2 changed files with 24 additions and 6 deletions

View File

@@ -85,9 +85,31 @@
background: #f9f9f9;
border: 1px solid #ddd;
padding: 1rem;
display: flex;
display: flex;
flex-direction: column;
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
height: 250px;
}
.phaseBox ul {
list-style: none;
padding: 0;
margin: 0;
overflow-y: auto;
flex-grow: 1;
}
.phaseBox ul::-webkit-scrollbar {
width: 6px;
}
.phaseBox ul::-webkit-scrollbar-thumb {
background-color: #ccc;
border-radius: 10px;
}
.phaseOverviewText {