AdminLTE/build/scss/_text.scss

46 lines
575 B
SCSS
Raw Normal View History

//
// Component: Text
//
// text modification
2018-03-17 18:07:55 +01:00
.text-bold {
&,
&.table td,
&.table th {
2018-03-17 18:07:55 +01:00
font-weight: 700;
}
}
.text-xs {
font-size: $font-size-xs !important;
}
2018-03-17 18:07:55 +01:00
.text-sm {
font-size: $font-size-sm !important;
2018-03-17 18:07:55 +01:00
}
.text-md {
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} {
2020-04-28 10:55:48 +02:00
color: #{$color} !important;
}
}
2020-09-23 16:08:15 +02:00
.dark-mode {
.text-muted {
color: $gray-500 !important;
}
}