Skip to content

Commit

Permalink
adds variables for the hr element margin
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgalante committed Oct 23, 2017
1 parent ca4ad8b commit e124787
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scss/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ h6, .h6 { font-size: $h6-font-size; }
//

hr {
margin-top: 1rem;
margin-bottom: 1rem;
margin-top: $hr-margin-top;
margin-bottom: $hr-margin-bottom;
border: 0;
border-top: $hr-border-width solid $hr-border-color;
}
Expand Down
5 changes: 4 additions & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,10 @@ $nested-kbd-font-weight: $font-weight-bold !default;

$list-inline-padding: 5px !default;

$mark-bg: #fcf8e3 !default;
$mark-bg: #fcf8e3 !default;

$hr-margin-top: 1rem !default;
$hr-margin-bottom: 1rem !default;


// Tables
Expand Down

0 comments on commit e124787

Please sign in to comment.