diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-12-30 15:43:01 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-12-30 15:43:01 -0500 |
| commit | 628337f3afcd5125299cbf620832779ab209022b (patch) | |
| tree | e23a47f6ba8e75640e6dcf1bb5acaef0b491313d /ui/app.css | |
| parent | 1859be064a5f3ea7e6e0188526b1b125dc1c77a7 (diff) | |
Add in some hand-rolled styles
Diffstat (limited to 'ui/app.css')
| -rw-r--r-- | ui/app.css | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -1,13 +1,12 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; +@import url("styles/reset.css"); +@import url("styles/variables.css"); +@import url("styles/overscroll.css"); +@import url("styles/app-bar.css"); +@import url("styles/sidebar.css"); -/* This should help minimize swipe-to-go-back behaviour, enabling our -* swipe-to-reveal-channel-menu behaviour. It won't work in all cases; in iOS -* Safari, when swiping from the screen edge, the OS gets th event and -* handles it before the browser does. -*/ -html, -body { - overscroll-behavior-x: none; +/* Debugging */ +div { + outline: 1px dashed grey; + background-color: var(--colour-background); + box-shadow: 5px 5px 5px var(--colour-border); } |
