Nice to know SASS media mixin

@mixin screen($px) {
	@media only screen and (max-width: $px px) {
		@content;
	}
}

.div {
	@include screen(375) {
		width: 100%;
	}
}

 

Leave a Reply

Your email address will not be published. Required fields are marked *