From 3515bce594d7092b3e88f487028a04eb0d63e37f Mon Sep 17 00:00:00 2001 From: Stephan Lachnit Date: Thu, 30 Jun 2022 23:54:19 +0200 Subject: [PATCH] cards: fix max width on mobile (#1057) Co-authored-by: LisaFC --- assets/scss/shortcodes/cards-pane.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/scss/shortcodes/cards-pane.scss b/assets/scss/shortcodes/cards-pane.scss index 00f00f9f2f..f46cfe1336 100644 --- a/assets/scss/shortcodes/cards-pane.scss +++ b/assets/scss/shortcodes/cards-pane.scss @@ -1,8 +1,8 @@ .card-deck { - max-width: 83%; + @extend .td-max-width-on-larger-screens; } .card { - max-width: 80%; + @extend .td-max-width-on-larger-screens; .highlight { border: none; }