1
1
mirror of https://github.com/primer/css.git synced 2024-11-10 16:07:25 +03:00

Don't use multiplication here

This commit is contained in:
Jon Rohan 2017-07-24 13:55:27 -07:00
parent 6bfb4044fa
commit 6b099a9d34
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
h4,
h5,
h6 {
margin-top: ($spacer-3 * 1.5);
margin-top: $spacer-4;
margin-bottom: $spacer-3;
font-weight: $font-weight-bold;
line-height: $lh-condensed;

View File

@ -71,7 +71,7 @@
hr {
height: 0.25em;
padding: 0;
margin: ($spacer-3 * 1.5) 0;
margin: $spacer-4 0;
background-color: $gray-200;
border: 0;
}