AdminLTE/build/scss/_text.scss

36 lines
457 B
SCSS
Raw Normal View History

/*
* Component: Text
* -------------
*/
// text modification
2018-03-17 18:07:55 +01:00
.text-bold {
&, &.table td, &.table th {
font-weight: 700;
}
}
.text-sm {
font-size: $font-size-sm !important;
2018-03-17 18:07:55 +01:00
}
.text-xs {
font-size: $font-size-base !important;
2018-03-17 18:07:55 +01:00
}
.text-lg {
font-size: $font-size-lg !important;
2018-03-17 18:07:55 +01:00
}
.text-xl {
font-size: $font-size-xl !important;
2018-03-17 18:07:55 +01:00
}
// text color variations
@each $name, $color in $colors {
.text-#{$name} {
color: #{$color};
}
}