This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-01 22:46:04 +00:00

2.4 KiB
Raw Permalink Blame History

{:toc}

Spacing scale

The spacing scale is a base-8 scale. We chose a base-8 scale because eight is a highly composable number (it can be divided and multiplied many times and result in whole numbers), yet allows spacing dense enough for GitHubs UI. The scales exception is that it begins at 4px to allow smaller padding and margin for denser parts of the site, from there on it steps up consistently in equal values of 8px.

Variable Scale Value
$spacer-0 0 0
$spacer-1 1 4px
$spacer-2 2 8px
$spacer-3 3 16px
$spacer-4 4 24px
$spacer-5 5 32px
$spacer-6 6 40px

These variables are encouraged to be used within components and custom CSS. The spacing scale is also used for margin and padding utilities.

See primer-marketing-support for the extended spacing scale used for marketing needs and the related y-axis spacing utilities for margin and padding.

Em-based spacing

Ems are used for spacing within components such as buttons and form elements. We stick to common fractions for em values (and powers of 2 where possible) so that , in combination with typography and line-height, the total height lands on sensible numbers.

We aim for whole numbers, however, GitHubs body font-size is 14px which is difficult to work with, so we sometimes cant achieve a whole number. Less desirable values are highlighted in red below.

Variable Fraction Y Padding (em) Total height at 14px Total height at 16px
$em-spacer-1 1/16 .0625 22.75 26
$em-spacer-2 1/8 .125 24.5 28
$em-spacer-3 1/4 .25 28 32
$em-spacer-4 3/8 .375 31.5 36
$em-spacer-5 1/2 .5 35 40
$em-spacer-6 3/4 .75 42 48

The variables listed above are preferred for use within components and custom CSS. To calculate values with other font-sizes or em values, we suggest using Formula.