Add basic side menu for layer selection

This _should_ be smart and not load expensive layers until they're rendered.
This commit is contained in:
Chandler Swift 2023-07-03 19:26:02 -05:00
parent 7e9164c11f
commit ffaf53fee2
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
4 changed files with 96 additions and 14 deletions

View file

@ -8,5 +8,24 @@ html, body {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
left: min(max(200px, 20%), 400px);
right: 0;
}
aside {
width: min(max(200px, 20%), 400px);
padding: 0 1em;
}
aside ul {
margin: 0;
padding: 0;
}
aside ul li {
list-style: none;
}
h1 {
text-align: center;
}