From bcb28b633737b38f0676d87a22e3a57ff53c699a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Sat, 9 Aug 2025 17:41:37 +0000 Subject: [PATCH] Merged in fix/SW-3138-stackable-info-cards (pull request #2594) fix(SW-3138): make cards stackable in mobile * fix(SW-3138): make cards stackable in mobile Approved-by: Bianca Widstam Approved-by: Anton Gunnarsson --- .../components/TempDesignSystem/Card/card.module.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/scandic-web/components/TempDesignSystem/Card/card.module.css b/apps/scandic-web/components/TempDesignSystem/Card/card.module.css index ced594ee9..d49dda4c9 100644 --- a/apps/scandic-web/components/TempDesignSystem/Card/card.module.css +++ b/apps/scandic-web/components/TempDesignSystem/Card/card.module.css @@ -97,7 +97,13 @@ } .buttonContainer { - display: flex; + display: grid; gap: var(--Space-x1); justify-content: center; } + +@media screen and (min-width: 768px) { + .buttonContainer { + display: flex; + } +}