Override GitHub's default tab-size of 8
GitHub tab width by roy-orbison
Details
Authorroy-orbison
LicenseCC Zero
Categorygithub
Created
Updated
Size446 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name GitHub tab width
@namespace userstyles.world
@author roy-orbison
@description Override GitHub's default tab-size of 8
@version 1.0.0
@advanced number tabSize "Tab width" [4, 1, null, 1]
@license CC0-1.0
==/UserStyle== */
@-moz-document domain("github.com") {
.tab-size[data-tab-size="8"] {
-moz-tab-size: /*[[tabSize]]*/;
tab-size: /*[[tabSize]]*/;
}
}