AdminLTE/build/scss/_text.scss

29 lines
323 B
SCSS
Raw Normal View History

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