Hi! π
Firstly, thanks for your work on this project! π
Today I used patch-package to patch tachyons@4.12.0 for the project I'm working on.
I needed to remove ".cf { *zoom: 1; }" IE6/7 css hack in tachyons.css and tachyons.min.css to avoid errors in when building my project.
Here is the diff that solved my problem:
diff --git a/node_modules/tachyons/css/tachyons.css b/node_modules/tachyons/css/tachyons.css
index 75387e6..c8e76ac 100644
--- a/node_modules/tachyons/css/tachyons.css
+++ b/node_modules/tachyons/css/tachyons.css
@@ -576,7 +576,6 @@ img { max-width: 100%; }
Ref: http://nicolasgallagher.com/micro-clearfix-hack/ */
.cf:before, .cf:after { content: " "; display: table; }
.cf:after { clear: both; }
-.cf { *zoom: 1; }
.cl { clear: left; }
.cr { clear: right; }
.cb { clear: both; }
This issue body was partially generated by patch-package.
Hi! π
Firstly, thanks for your work on this project! π
Today I used patch-package to patch
tachyons@4.12.0for the project I'm working on.I needed to remove ".cf { *zoom: 1; }" IE6/7 css hack in tachyons.css and tachyons.min.css to avoid errors in when building my project.
Here is the diff that solved my problem:
diff --git a/node_modules/tachyons/css/tachyons.css b/node_modules/tachyons/css/tachyons.css
index 75387e6..c8e76ac 100644
--- a/node_modules/tachyons/css/tachyons.css
+++ b/node_modules/tachyons/css/tachyons.css
@@ -576,7 +576,6 @@ img { max-width: 100%; }
Ref: http://nicolasgallagher.com/micro-clearfix-hack/ */
.cf:before, .cf:after { content: " "; display: table; }
.cf:after { clear: both; }
-.cf { *zoom: 1; }
.cl { clear: left; }
.cr { clear: right; }
.cb { clear: both; }
This issue body was partially generated by patch-package.