Updated screenshots.

- Fixed bug where sidebar settings values were inverted two out of four of the buttons.
- Fixed sidebar bug where making the window smaller caused sidebar to exceed page size.
- Remove debugs.
- Decreased rows of download notes.
- Increased step side for sidebar size settings.
- Simplified and made behavior more robust for sidebar size clamping.
This commit is contained in:
Christian Bastian
2024-07-27 05:02:12 -04:00
parent c197c7f060
commit 22e5afd104
8 changed files with 27 additions and 42 deletions

View File

@@ -99,21 +99,29 @@
.model-manager[data-sidebar-state="left"] {
width: var(--model-manager-sidebar-width-left);
max-width: 95vw;
min-width: 22vw;
right: auto;
}
.model-manager[data-sidebar-state="top"] {
height: var(--model-manager-sidebar-height-top);
max-height: 95vh;
min-height: 22vh;
bottom: auto;
}
.model-manager[data-sidebar-state="bottom"] {
height: var(--model-manager-sidebar-height-bottom);
max-height: 95vh;
min-height: 22vh;
top: auto;
}
.model-manager[data-sidebar-state="right"] {
width: var(--model-manager-sidebar-width-right);
max-width: 95vw;
min-width: 22vw;
left: auto;
}