MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/public_html/india/wp-content/plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss
// ==========================================================================
// Breakpoint Mixin
//
// Uses Sass Maps which requires Sass v3.3.0 or newer
//
//
// EXAMPLE
//
// body {
// 	@include breakpoint(tablet){
// 		font-size: 14px;
// 	};
// }

// ==========================================================================

// Add or remove breakpoints as you desire
$breakpoints:(
	phone: 320px,
	large-phone: 530px,
	phablet: 600px,
	tablet: 782px,
	desktop: 900px,
	large-desktop: 1147px,
);

@mixin breakpoint($size){
	@each $breakpoint, $value in $breakpoints {
		@if $size == $breakpoint {
			@media (max-width: map-get($breakpoints, $breakpoint)){
				@content;
			}
		}
	}
}