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; }