astro icon indicating copy to clipboard operation
astro copied to clipboard

Fix min-width/max-width conflict

Open cferdinandi opened this issue 9 years ago • 0 comments

// Calculate pixels from ems
@function calc-px($em, $base: 16) {
	$em: strip-unit($em);
	$base: strip-unit($base);
	@if $em == 1px {
		@return 1px;
	}
	@return ($em * $base) * 1px;
}

@media (max-width: (calc-em(calc-px($bp-large) - 1))) { ... }

cferdinandi avatar Feb 07 '17 14:02 cferdinandi