From d24309be463e945fb241cd9263514119288ca850 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Wed, 26 Sep 2018 21:16:24 +0200 Subject: [PATCH] post fixes --- src/components/molecules/PostMeta.module.scss | 2 +- src/pages/goodies.module.scss | 20 ++++++++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/components/molecules/PostMeta.module.scss b/src/components/molecules/PostMeta.module.scss index 8364a20b..d82251d3 100644 --- a/src/components/molecules/PostMeta.module.scss +++ b/src/components/molecules/PostMeta.module.scss @@ -74,7 +74,7 @@ margin-right: $spacer / 2; &::before { - color: $brand-grey-dimmed; + color: $brand-grey-light; content: '#'; margin-right: 1px; } diff --git a/src/pages/goodies.module.scss b/src/pages/goodies.module.scss index 99099531..61474506 100644 --- a/src/pages/goodies.module.scss +++ b/src/pages/goodies.module.scss @@ -8,7 +8,23 @@ } .goodie { - margin-bottom: $spacer * 4; + @include divider; + + padding-top: $spacer; + padding-bottom: $spacer * 2; + + &:first-of-type { + padding-top: 0; + } + + &:last-child { + border-bottom: 0; + padding-bottom: 0; + + &::before { + display: none; + } + } a { display: block; @@ -16,8 +32,6 @@ } .title { - font-size: $font-size-h3; - color: $brand-grey; margin-top: 0; margin-bottom: $spacer; }