| 123456789101112131415161718192021222324252627282930313233 | 
							- //
 
- // Component: Text
 
- //
 
- // text modification
 
- .text-bold {
 
-   &, &.table td, &.table th {
 
-     font-weight: 700;
 
-   }
 
- }
 
- .text-sm {
 
-   font-size: $font-size-sm !important;
 
- }
 
- .text-xs {
 
-   font-size: $font-size-base !important;
 
- }
 
- .text-lg {
 
-   font-size: $font-size-lg !important;
 
- }
 
- .text-xl {
 
-   font-size: $font-size-xl !important;
 
- }
 
- // text color variations
 
- @each $name, $color in $colors {
 
-   .text-#{$name} {
 
-     color: #{$color};
 
-   }
 
- }
 
 
  |