diff --git a/CHANGELOG.md b/CHANGELOG.md index 0195914..aea92bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ - Add font-smoothing to the body - Restrict img and video tags to their parent container - Inherit the default fill color for svgs + - Set `vertical-align: top` on all textareas - Upgraded modern-normalize ## v0.0.2 diff --git a/lib/config.scss b/lib/config.scss index 7a4c28c..42bbeed 100644 --- a/lib/config.scss +++ b/lib/config.scss @@ -180,7 +180,7 @@ $font-stacks: map.merge( } @function font($name) { - @return map.get($font-stacks, $name); + @return list.join(map.get($font-stacks, $name), (), $separator: comma, $bracketed: false) } // diff --git a/lib/normalize.scss b/lib/normalize.scss index 461455b..a524e10 100644 --- a/lib/normalize.scss +++ b/lib/normalize.scss @@ -64,6 +64,10 @@ height: auto; } + textarea { + vertical-align: top; + } + svg { fill: currentColor; }