diff options
author | metamuffin <metamuffin@disroot.org> | 2023-06-25 00:43:56 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-06-25 00:43:56 +0200 |
commit | 5ab212a57ce299d421c168b03eed73c8bb938a7d (patch) | |
tree | 8380536b81a6eb6ea3d0fff891706789d548cc33 /client-web/style/side.sass | |
parent | bf0a57609d3792863c1f20a9d2d4b5bd7b0c7576 (diff) | |
download | keks-meet-5ab212a57ce299d421c168b03eed73c8bb938a7d.tar keks-meet-5ab212a57ce299d421c168b03eed73c8bb938a7d.tar.bz2 keks-meet-5ab212a57ce299d421c168b03eed73c8bb938a7d.tar.zst |
chat almost works too
Diffstat (limited to 'client-web/style/side.sass')
-rw-r--r-- | client-web/style/side.sass | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/client-web/style/side.sass b/client-web/style/side.sass index 0f4e97c..89679f8 100644 --- a/client-web/style/side.sass +++ b/client-web/style/side.sass @@ -1,25 +1,32 @@ -.side-ui +.side-ui flex: 0 - >div - width: 50em + >* + height: 100% + padding: 2em + background-color: var(--bg) float: right - >div.animate-in + >.animate-in animation-name: side-slide-in - animation-duration: 0.5s - >div.animate-out + animation-duration: 0.3s + >.animate-out animation-name: side-slide-out - animation-duration: 0.5s + animation-duration: 0.3s + transform: translateX(100%) @keyframes side-slide-in from transform: translateX(100%) to transform: translateX(0%) - @keyframes side-slide-out from transform: translateX(0%) to transform: translateX(100%) + +.preferences + width: 50em +.chat + width: 30em |