From 05e35844308090ce27586363a997b4ce49775369 Mon Sep 17 00:00:00 2001 From: decabeza Date: Fri, 9 Oct 2020 12:05:58 +0200 Subject: [PATCH] Adjust groups and headings styles --- .../stylesheets/budgets/groups_and_headings.scss | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/budgets/groups_and_headings.scss b/app/assets/stylesheets/budgets/groups_and_headings.scss index 6f6b4a2d9..b3e532f1d 100644 --- a/app/assets/stylesheets/budgets/groups_and_headings.scss +++ b/app/assets/stylesheets/budgets/groups_and_headings.scss @@ -1,5 +1,5 @@ .groups-and-headings { - $spacing: rem-calc(4); + $spacing: $line-height / 2; .headings-list { display: flex; @@ -9,10 +9,12 @@ } .heading { - border: 1px solid $border; - border-radius: rem-calc(3); + border: 2px solid $border; + border-radius: rem-calc(6); + box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); margin-bottom: $line-height / 2; margin-left: $spacing; + margin-top: $line-height / 4; padding: $line-height / 2; position: relative; width: 100%; @@ -34,6 +36,7 @@ } a { + font-weight: bold; &::after, &::before { @@ -58,6 +61,7 @@ span { display: block; font-size: $small-font-size; + padding-top: $line-height / 2; } } }