// main: ../../../../css/framework.scss // stylelint-disable declaration-no-important // Alignment .text-justify { text-align: justify !important; } .text-wrap { white-space: normal !important; } .text-nowrap { white-space: nowrap !important; } // Responsive alignment @each $breakpoint in map-keys($grid-breakpoints) { @include media-breakpoint-up($breakpoint) { $infix: breakpoint-infix($breakpoint, $grid-breakpoints); .text#{$infix}-left { text-align: left !important; } .text#{$infix}-right { text-align: right !important; } .text#{$infix}-center { text-align: center !important; } } } // Transformation .text-lowercase { text-transform: lowercase !important; } .text-uppercase { text-transform: uppercase !important; } .text-capitalize { text-transform: capitalize !important; } .text-italic { font-style: italic !important; } // Weight and italics .font-weight-light { font-weight: $font-weight-light !important; } .font-weight-lighter { font-weight: $font-weight-lighter !important; } .font-weight-normal { font-weight: $font-weight-normal !important; } .font-weight-bold { font-weight: $font-weight-bold !important; } .font-weight-bolder { font-weight: $font-weight-bolder !important; } .font-letter-spacing-less { letter-spacing: 1px; } .font-letter-spacing { letter-spacing: 2px; } .font-letter-spacing-more { letter-spacing: 3px; }