Last active
March 11, 2019 15:58
-
-
Save SvenBudak/228deae82dbe502665376f8f82e94dff to your computer and use it in GitHub Desktop.
This file contains 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
$prefix: 'fs'; | |
button, a { | |
&[#{$prefix}-size="normal"] { | |
padding: 0 32px; | |
font-size: 18px; | |
font-weight: 500; | |
line-height: 48px; | |
} | |
} | |
h1, h2, h3, h4, h5, h6 { | |
span { | |
color: var(--primary-color) | |
} | |
&[#{$prefix}-title-space] { | |
margin-top: 0; | |
margin-bottom: 64px; | |
} | |
} | |
ul[#{$prefix}-list-style="normal"] { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
@each $type in (margin), (padding) { | |
[#{$prefix}-no-#{$type}] { | |
#{$type}: 0; | |
} | |
@each $direction in (top), (right), (bottom), (left) { | |
[#{$prefix}-no-#{$type}-#{$direction}] { | |
#{$type}-#{$direction}: 0; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment