@each $key, $value in $width_height {
	.#{$atom-prefix}mnw-#{$key} {
		min-width: #{$value} !important;
	}
}

@each $breakpointName, $breakpointSize in $breakpoints {
	@media (min-width: $breakpointSize) {
		@each $key, $value in $width_height {
			.#{$atom-prefix}mnw-#{$key}\:#{$breakpointName} {
				min-width: #{$value} !important;
			}
		}
	}
}
