From 3383c2b6d64c8680b60107f3c5f3a5d879edda31 Mon Sep 17 00:00:00 2001 From: Christian Reotutar <32468132+creotutar@users.noreply.github.com> Date: Wed, 13 May 2020 21:18:25 -0400 Subject: [PATCH] Fix gridded yxt-Card styling for 2 columns Fixes #783 We should be applying width to the Card for 2 columns just as we are doing for 3 and 4 columns. --- src/ui/sass/modules/_Card.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/sass/modules/_Card.scss b/src/ui/sass/modules/_Card.scss index 78f6fcc4a..55b326b96 100644 --- a/src/ui/sass/modules/_Card.scss +++ b/src/ui/sass/modules/_Card.scss @@ -60,7 +60,7 @@ @media (min-width: $breakpoint-mobile-max) { - &--2 > .yxt-Card + &--2 > .yxt-Card, &--2 > .yxt-Card-placeholder { flex-basis: 45%; }