chore: move text-color to typography
This commit is contained in:
parent
04c0f11331
commit
0e1428fd45
2 changed files with 5 additions and 8 deletions
|
@ -254,8 +254,6 @@ blockquote, .quote {
|
||||||
@include well();
|
@include well();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
code {
|
code {
|
||||||
background:transparent;
|
background:transparent;
|
||||||
color: $color-danger;
|
color: $color-danger;
|
||||||
|
@ -265,6 +263,11 @@ code {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
@each $name, $color in list-colors() {
|
||||||
|
&-#{$name} { @include text-color(get-color($name)); }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* 2.6 - Special styling */
|
/* 2.6 - Special styling */
|
||||||
|
|
||||||
|
|
|
@ -87,9 +87,3 @@
|
||||||
&-#{$name} { @include background-color(get-color($name)); }
|
&-#{$name} { @include background-color(get-color($name)); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.text {
|
|
||||||
@each $name, $color in list-colors() {
|
|
||||||
&-#{$name} { @include text-color(get-color($name)); }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue