From 77aba1a57ada86a19f1e839d0ccf6620ccc91f20 Mon Sep 17 00:00:00 2001 From: Catherine Stevens Date: Fri, 1 Nov 2019 22:23:00 -0700 Subject: [PATCH 1/2] Set height for club card at tablet and desktop only --- src/components/components/club-teaser-list/club-teaser.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/components/club-teaser-list/club-teaser.scss b/src/components/components/club-teaser-list/club-teaser.scss index 94fad69..add4af5 100644 --- a/src/components/components/club-teaser-list/club-teaser.scss +++ b/src/components/components/club-teaser-list/club-teaser.scss @@ -13,6 +13,9 @@ @include padding-bottom(20px); display: flex; width: 100%; + @include breakpoint($mobile-small) { + height: 192px; + } } &__content-wrapper { From 3e6ec74304614014c06c94bcb38e9253ff86cdcc Mon Sep 17 00:00:00 2001 From: Catherine Stevens Date: Thu, 7 Nov 2019 14:45:44 -0800 Subject: [PATCH 2/2] changed from using height to min-height --- src/components/components/club-teaser-list/club-teaser.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/components/club-teaser-list/club-teaser.scss b/src/components/components/club-teaser-list/club-teaser.scss index add4af5..28c3bf2 100644 --- a/src/components/components/club-teaser-list/club-teaser.scss +++ b/src/components/components/club-teaser-list/club-teaser.scss @@ -14,7 +14,7 @@ display: flex; width: 100%; @include breakpoint($mobile-small) { - height: 192px; + min-height: 192px; } }