diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-07-28 22:27:39 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-07-28 22:27:39 -0400 |
commit | 03b7e2d4cb001cef990efef61d9ce499c8e4f878 (patch) | |
tree | 3e3d2d179c2b95703dda940546d00ac914b33bd8 /styles | |
parent | 81b562233188569b66fc2fb2a7ff952bdae0a4ec (diff) |
Fix button input, add rotation and scale to decks
Diffstat (limited to 'styles')
-rw-r--r-- | styles/client/card.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/styles/client/card.css b/styles/client/card.css index f8c6438..8b82fec 100644 --- a/styles/client/card.css +++ b/styles/client/card.css @@ -136,6 +136,8 @@ deck { top: calc(var(--y) * (100vh - 250px)); left: calc(var(--x) * (100vw - 166px)); + transform: scale(var(--size)) rotate(var(--rot)); + overflow: visible; border-radius: 10px; |