From 9b2d0f2d31f50a5d7cdc564d1d5d89d07f28998d Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Thu, 18 Feb 2021 23:49:52 +0100 Subject: [PATCH] .small button has minimal height. --- frontend/styles/global.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/styles/global.scss b/frontend/styles/global.scss index a32e341..2c1f307 100644 --- a/frontend/styles/global.scss +++ b/frontend/styles/global.scss @@ -80,6 +80,7 @@ a { > *:not(:last-child) { margin-right: 2rem; + margin-bottom: 0.75rem; } &.column { @@ -92,6 +93,10 @@ a { } } + &.small > button { + height: min-content; + } + @include mobile { &:not(.row) { flex-direction: column; @@ -99,7 +104,7 @@ a { > *:not(:last-child) { margin-right: unset; - margin-bottom: .75rem; + margin-bottom: 0.75rem; } } }