From 221e4365ec5621b3a005457d11c8028c5435dd45 Mon Sep 17 00:00:00 2001 From: silverwind Date: Mon, 29 Aug 2022 18:40:49 +0200 Subject: [PATCH] Remove IE7 CSS hack Remove this [star property hack](https://stackoverflow.com/a/14927670/808699) that was targeting IE 5.5 to 7. It causes warnings during ESBuild's CSS minification and IE 7 has a global market share of 0.01% so I think it can be safely dropped. Fixes: #62 --- scss/_clears.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/scss/_clears.scss b/scss/_clears.scss index d4c2fc3..eb3daae 100644 --- a/scss/_clears.scss +++ b/scss/_clears.scss @@ -18,7 +18,6 @@ .cf:before, .cf:after { content: " "; display: table; } .cf:after { clear: both; } -.cf { *zoom: 1; } .cl { clear: left; } .cr { clear: right; }