Skip to content

Instantly share code, notes, and snippets.

@stephencoe
Created January 16, 2015 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephencoe/2d71ea355564bfe0e0d3 to your computer and use it in GitHub Desktop.
Save stephencoe/2d71ea355564bfe0e0d3 to your computer and use it in GitHub Desktop.
Fix inuit white space without HTML comments
/**
* Fix for inuit
* https://github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
* https://github.com/sparklemotion/nokogiri.org/blob/master/sass/oscailte/helpers/_grid-fix.scss
*/
.layout {
letter-spacing: -0.31em;
}
/* Opera hack */
.opera:-o-prefocus,
.layout {
word-spacing: -0.43em;
}
.layout__item {
letter-spacing: normal;
word-spacing: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment