💬 Commit message: Update 2026-02-14 03:29:49, 1 files, 21 lines

📁 Files changed: 1
📝 Lines changed: 21

  • index.html
This commit is contained in:
Adam Ladachowski
2026-02-14 03:29:49 +01:00
parent 24e39ed225
commit 1cad0fea94
+18 -3
View File
@@ -46,9 +46,24 @@
/* Main content */
.main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
/* Views */
.view { display: none; flex: 1; flex-direction: column; overflow: hidden; }
.view.active { display: flex; }
/* Views - only one visible at a time */
.view {
display: none !important;
flex: 1;
flex-direction: column;
overflow: hidden;
position: absolute;
visibility: hidden;
height: 0;
width: 0;
}
.view.active {
display: flex !important;
position: relative;
visibility: visible;
height: auto;
width: auto;
}
/* Gallery view */
#gallery-view { overflow-y: auto; }