Skip to content

Commit

Permalink
Merge pull request #287 from daveio/fix-sass-callout
Browse files Browse the repository at this point in the history
Fix sass callout
  • Loading branch information
mrholek authored Oct 24, 2017
2 parents 855a1ea + c70bf3d commit 947c669
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 19 deletions.
20 changes: 10 additions & 10 deletions Static_Full_Project_GULP/scss/core/_callout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@
float: right;
width: 50%;
}

@each $color, $value in $theme-colors {
&.callout-#{$color} {
border-left-color: $value;

h4 {
color: $value;
}
}
}
}

.callout-bordered {
Expand Down Expand Up @@ -43,13 +53,3 @@
color: $text-muted;
}
}

@each $color, $value in $theme-colors {
&.callout-#{$color} {
border-left-color: $value;

h4 {
color: $value;
}
}
}
19 changes: 10 additions & 9 deletions Static_Starter_GULP/scss/core/_callout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@
float: right;
width: 50%;
}

@each $color, $value in $theme-colors {
&.callout-#{$color} {
border-left-color: $value;

h4 {
color: $value;
}
}
}
}

.callout-bordered {
Expand Down Expand Up @@ -44,12 +54,3 @@
}
}

@each $color, $value in $theme-colors {
&.callout-#{$color} {
border-left-color: $value;

h4 {
color: $value;
}
}
}

0 comments on commit 947c669

Please sign in to comment.