diff --git a/_includes/icons.html b/_includes/icons.html index 537ba74..a6e1c93 100644 --- a/_includes/icons.html +++ b/_includes/icons.html @@ -1,6 +1,8 @@
{% for icon in site.data.icons %} {% capture icon_path %}icons/{{ icon }}.svg{% endcapture %} - {% include_relative {{ icon_path }} %} +
+ {% include_relative {{ icon_path }} %} +
{% endfor %}
\ No newline at end of file diff --git a/style.scss b/style.scss index 93a48ad..74e23e3 100644 --- a/style.scss +++ b/style.scss @@ -118,3 +118,18 @@ a { } } } + +.feather-icon { + display: inline-block; + width: 1.5rem; + height: 1.5rem; + stroke-width: 2px; + + > svg { + width: 100%; + height: 100%; + stroke: currentColor; + stroke-width: inherit; + } +} +