Standardize icon size

These icons share page with the social media icons (eg: ssb-twitter)
in both the index and the show pages
We believe we gain consistency if all the icons that appear are the
same size.

Pull request 4101 will use this width in social media icons as well.
This commit is contained in:
taitus
2021-01-28 10:56:51 +01:00
committed by Javi Martín
parent d774742bf5
commit 2215209ae4
2 changed files with 3 additions and 1 deletions

View File

@@ -72,6 +72,8 @@ $outline-focus: 3px solid #ffbf47;
$input-height: $line-height * 2; $input-height: $line-height * 2;
$icon-width: $line-height * 2;
$sdg-colors: ( $sdg-colors: (
1: #e5243b, 1: #e5243b,
2: #dda63a, 2: #dda63a,

View File

@@ -1,4 +1,4 @@
.sdg-goal-icon { .sdg-goal-icon {
min-width: 40px; min-width: 40px;
width: 4vw; width: $icon-width;
} }