From 6ea1e91d1d705d831e1a3dfc55b43020f64edd2a Mon Sep 17 00:00:00 2001 From: Spythere Date: Sat, 25 May 2024 17:57:25 +0200 Subject: [PATCH] hotfix: card positioning --- src/components/Global/Card.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/Global/Card.vue b/src/components/Global/Card.vue index b7023d6..a6457f6 100644 --- a/src/components/Global/Card.vue +++ b/src/components/Global/Card.vue @@ -76,12 +76,18 @@ export default defineComponent({ margin: 1em; + max-height: 90vh; + max-height: 95dvh; + background-color: #1a1a1a; box-shadow: 0 0 15px 10px #0e0e0e; - max-height: 95vh; - max-height: 95dvh; - overflow: auto; } + +@include smallScreen { + .card { + align-items: flex-start; + } +}