diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-07-08 13:06:12 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-07-08 13:06:12 +0200 |
commit | ee868d2f5f23bca0165081a9ab263ea4753f3b93 (patch) | |
tree | 3f31f10210346cd327e26f5f54041acb213ff4ce /styles | |
parent | e0bea044620eefc3deb4c5c52e43d097288e3b8e (diff) |
mobile beginnings
Diffstat (limited to 'styles')
-rw-r--r-- | styles/mobile.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/styles/mobile.css b/styles/mobile.css new file mode 100644 index 0000000..86f1372 --- /dev/null +++ b/styles/mobile.css @@ -0,0 +1,58 @@ +.mobile .MuiAppBar-root { + background-color: var(--c300); + color: var(--fg); +} + +.mobile .MuiAppBar-root h3 { + margin-left: 12px; + font-weight: 500; +} +.mobile h3, +.MuiDrawer-paper h3 { + font-size: 1.25rem; +} + +.mobile { + background-color: var(--c200); + min-height: 100vh; +} + +.mobile .inner { + padding: 16px; +} + +.MuiDrawer-paper { + background-color: var(--c400) !important; + width: 250px; +} + +.MuiDivider-root { + background-color: var(--c600) !important; + height: 2px !important; +} + +.MuiDrawer-paper, +.MuiListItemIcon-root { + color: var(--fg) !important; +} + +.MuiDrawer-paper .MuiList-root { + height: 100vh; + position: relative; +} + +.MuiDrawer-root .MuiListItem-root.Mui-selected * { + color: var(--piss) !important; +} + +.MuiDrawer-root .MuiListItem-root.Mui-selected:after { + content: ''; + position: absolute; + inset: 0 0 0 0; + background-color: var(--piss); + opacity: .1; + transition: opacity .1s; +} +.MuiDrawer-root .MuiListItem-root.Mui-selected:active:after { + opacity: .15 !important; +} |