From ee48742b3a8a74946dc7364b34c2d72f8d610a56 Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Wed, 27 Jan 2021 22:04:39 +0200 Subject: [PATCH] Fix listing controls alignment Fixes #293 --- src/components/molecules/listingAnchors/_index.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/molecules/listingAnchors/_index.scss b/src/components/molecules/listingAnchors/_index.scss index ac66df8ec..c86dbd267 100644 --- a/src/components/molecules/listingAnchors/_index.scss +++ b/src/components/molecules/listingAnchors/_index.scss @@ -59,7 +59,7 @@ min-width: 100%; padding: 0.375rem 0.25rem; line-height: 1.5rem; - height: 48px; + height: 40px; border: none; box-shadow: none; text-align: center; @@ -80,6 +80,11 @@ @media screen and (min-width: $layout-medium-breakpoint) { padding: 0.625rem 0.875rem; + height: 48px; + } + + @media screen and (min-width: $layout-large-breakpoint) { + height: 52px; } } }