chore: move text-color to typography

This commit is contained in:
Kazhnuz Klappsthul 2021-07-30 09:51:59 +02:00
parent 04c0f11331
commit 0e1428fd45
2 changed files with 5 additions and 8 deletions

View File

@ -254,8 +254,6 @@ blockquote, .quote {
@include well();
}
code {
background:transparent;
color: $color-danger;
@ -265,6 +263,11 @@ code {
font-size: 0.9em;
}
.text {
@each $name, $color in list-colors() {
&-#{$name} { @include text-color(get-color($name)); }
}
}
/* 2.6 - Special styling */

View File

@ -87,9 +87,3 @@
&-#{$name} { @include background-color(get-color($name)); }
}
}
.text {
@each $name, $color in list-colors() {
&-#{$name} { @include text-color(get-color($name)); }
}
}