Skip to content

Commit

Permalink
litera: remove 0deg from linear-gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspark committed Oct 20, 2020
1 parent 9f7b5d7 commit cc78ed3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/litera/_bootswatch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ table,
@each $color, $value in $theme-colors {
&-#{$color} {
@if $enable-gradients {
background: $value linear-gradient(0deg, mix($body-bg, $value, 15%), $value) repeat-x;
background: $value linear-gradient($value, mix($body-bg, $value, 15%)) repeat-x;
} @else {
background-color: $value;
}
Expand Down
2 changes: 1 addition & 1 deletion docs/4/litera/_bootswatch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ table,
@each $color, $value in $theme-colors {
&-#{$color} {
@if $enable-gradients {
background: $value linear-gradient(0deg, mix($body-bg, $value, 15%), $value) repeat-x;
background: $value linear-gradient($value, mix($body-bg, $value, 15%)) repeat-x;
} @else {
background-color: $value;
}
Expand Down

0 comments on commit cc78ed3

Please sign in to comment.