1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 09:41:47 +02:00

feat(text colors): adds text colors classes like is-primary etc.

fix #226
This commit is contained in:
LukBukkit
2018-12-28 18:01:39 +01:00
parent 3ab3cd5d9b
commit 4a06744431
3 changed files with 37 additions and 0 deletions

View File

@@ -10,3 +10,4 @@
@import "progress.scss";
@import "radios.scss";
@import "tables.scss";
@import "text.scss";

17
scss/elements/text.scss Normal file
View File

@@ -0,0 +1,17 @@
.nes-text {
&.is-primary {
color: map-get($primary-colors, "normal");
}
&.is-success {
color: map-get($success-colors, "normal");
}
&.is-warning {
color: map-get($warning-colors, "normal");
}
&.is-error {
color: map_get($error-colors, "normal");
}
}