File "_utilities.scss"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/elementor/app/assets/styles/base/_utilities.scss
File size: 479 bytes
MIME-type: text/x-asm
Charset: utf-8

.sr-only {
	@include sr-only();
}

@each $breakpoint in map-keys($breakpoints) {
	@media screen and (min-width: #{map-get($breakpoints, $breakpoint)}) {
		.text-start-#{$breakpoint} {
			text-align: start;
		}
	}

	@media screen and (min-width: #{map-get($breakpoints, $breakpoint)}) {
		.text-center-#{$breakpoint} {
			text-align: center;
		}
	}

	@media screen and (min-width: #{map-get($breakpoints, $breakpoint)}) {
		.text-end-#{$breakpoint} {
			text-align: end;
		}
	}
}