Skip to content

Instantly share code, notes, and snippets.

@ZortacDev
Created May 20, 2017 19:36
Show Gist options
  • Save ZortacDev/6039b690f354920836ad574623bf85cc to your computer and use it in GitHub Desktop.
Save ZortacDev/6039b690f354920836ad574623bf85cc to your computer and use it in GitHub Desktop.
Stylish CSS for changing default tab width.
@namespace url(http://www.w3.org/1999/xhtml);
* {
--tab-size: 4;
-moz-tab-size: var(--tab-size);
-o-tab-size: var(--tab-size);
tab-size: var(--tab-size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment