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; + } +}