Newer
Older
GestionHoteleria / src / scss / custom / rtl / _text-rtl.scss
James Cuadrado on 29 Apr 2021 433 bytes new
// stylelint-disable declaration-no-important

//
// Text
//

// 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: right !important; }
    .text#{$infix}-right  { text-align: left !important; }
    .text#{$infix}-center { text-align: center !important; }
  }
}