diff options
Diffstat (limited to 'client-web/public/assets/style/prefs.css')
-rw-r--r-- | client-web/public/assets/style/prefs.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/client-web/public/assets/style/prefs.css b/client-web/public/assets/style/prefs.css new file mode 100644 index 0000000..63ec299 --- /dev/null +++ b/client-web/public/assets/style/prefs.css @@ -0,0 +1,16 @@ +.prefs-overlay { + position: fixed; + z-index: 80; + + left: 50%; + bottom: 5em; + transform: translateX(-50%); + + width: min(50em, 80vw); + height: min(40em, 60vh); + + background-color: var(--bg); + border-radius: 1em; + padding: 2em; + overflow-y: auto; +} |