Last active
April 24, 2017 00:00
-
-
Save JonathanZWhite/43023e03896db94e8fbe9f6b0058e0fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const spacingFactor = 8; | |
export const spacing = { | |
space0: `${spacingFactor / 2}px`, // 4 | |
space1: `${spacingFactor}px`, // 8 | |
space2: `${spacingFactor * 2}px`, // 16 | |
space3: `${spacingFactor * 3}px`, // 24 | |
space4: `${spacingFactor * 4}px`, // 32 | |
space5: `${spacingFactor * 5}px`, // 40 | |
space6: `${spacingFactor * 6}px`, // 48 | |
space8: `${spacingFactor * 8}px`, // 64 | |
space9: `${spacingFactor * 9}px`, // 72 | |
space13: `${spacingFactor * 13}px`, // 104 | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment