diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-07-18 23:19:58 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-07-18 23:19:58 -0400 |
commit | 1dab192a329b1ad966b0c1e0401eeaa78d5b752e (patch) | |
tree | 2fbc10a865179e8a36f0f8e1b450fdf9c3eb1069 /styles/client/card.css | |
parent | 19daa4f91a348515af5f9610bd686b5bf4f509ba (diff) |
Init + deck bug
Push init code into client.js
Fix deck rendering bugs for strip modes
Diffstat (limited to 'styles/client/card.css')
-rw-r--r-- | styles/client/card.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/styles/client/card.css b/styles/client/card.css index b19b17a..9e7c558 100644 --- a/styles/client/card.css +++ b/styles/client/card.css @@ -173,8 +173,8 @@ deck[mode="strip-hr"] > card { } deck[mode="strip-hl"], deck[mode="strip-hr"] { - width: calc(var(--ccount) * 75px + 160px); - left: calc(var(--x) * (100vw - (var(--ccount) * 75px + 160px))); + width: calc(var(--ccount) * 75px + 166px); + left: calc(var(--x) * (100vw - (var(--ccount) * 75px + 166px))); } @@ -187,6 +187,6 @@ deck[mode="strip-vd"] > card { } deck[mode="strip-vu"], deck[mode="strip-vd"] { - height: calc(var(--ccount) * 115px + 240px); - top: calc(var(--y) * (100vh - (var(--ccount) * 115px + 240px))); + height: calc(var(--ccount) * 115px + 250px); + top: calc(var(--y) * (100vh - (var(--ccount) * 115px + 250px))); } |