Skip to content

Commit

Permalink
Fix font getter function and add textarea normalize rule
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonmaur committed Apr 12, 2023
1 parent 86cbb57 commit 9581e61
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

//
Expand Down
4 changes: 4 additions & 0 deletions lib/normalize.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@
height: auto;
}

textarea {
vertical-align: top;
}

svg {
fill: currentColor;
}
Expand Down

0 comments on commit 9581e61

Please sign in to comment.