Skip to content
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.

Commit

Permalink
Fix text size helpers for lists
Browse files Browse the repository at this point in the history
Use `letter-spacing` instead of `font-size` to remove inline list
spacing

Fix #85
  • Loading branch information
bartkozal committed Aug 17, 2016
1 parent 2ff0f5b commit 6763abd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/_list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ dd + dt {
@extend %list-reset;
margin-bottom: 0;
margin-left: quarter($spacing-unit) * -1;
font-size: 0;
letter-spacing: -4px;

> li {
@include font-size($font-size-base);
display: inline-block;
padding-right: quarter($spacing-unit);
padding-left: quarter($spacing-unit);
letter-spacing: 0;
}
}

Expand Down

0 comments on commit 6763abd

Please sign in to comment.