commit 5dadf2b428bc15bb8c01e80c6ad718a173c2a1c7
parent 50cc0ace1ab7cdaa4d7547fb307c87d531337273
Author: Brian C. Lane <bcl@brianlane.com>
Date: Sun, 13 Mar 2022 08:31:27 -0700
Adjust css so event list will scroll.
I still don't really know how all these options interact, but it looks
ok on the desktop.
Fixes #1
Diffstat:
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/src/strix/ui/style.css b/src/strix/ui/style.css
@@ -1,4 +1,9 @@
+html {
+ height: 100%;
+}
+
body {
+ height: 100%;
}
#live-feeds {
@@ -15,23 +20,23 @@ body {
}
#topview {
- width: 100%;
- height: 100%
+ display: flex;
+ max-height: 70%
}
#viewer {
- width: 80%;
- display: inline-block;
+ flex: 7;
}
video {
width: 100%;
+ height: 100%;
}
#days {
- display: inline-block;
overflow: auto;
+ flex: 1;
}
#days ul {