Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
🐛 Fix #841
Browse files Browse the repository at this point in the history
Add a scrollable settings table
  • Loading branch information
GitSquared committed Nov 6, 2020
1 parent 78a5436 commit 17dc374
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/assets/css/modal.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,18 @@ div.modal_popup table td {
font-size: 1.7vh;
}

div.modal_popup table#settingsEditor tbody {
display: block;
position: relative;
max-height: 60vh;
overflow: auto;
}

div.modal_popup table#settingsEditor tbody tr:first-child {
position: sticky;
top: 0px;
}

div.modal_popup table:not(#settingsEditor) td:first-child {
text-align: center;
}
Expand Down

0 comments on commit 17dc374

Please sign in to comment.