Created
August 22, 2018 09:40
-
-
Save sebastiano-guerriero/1b13e4da373ab88c61cd3968f0351565 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
| .header__top { | |
| background: var(--black); | |
| padding: var(--space-sm); | |
| text-align: center; | |
| a { | |
| color: var(--white); | |
| @include fontSmooth; | |
| } | |
| } | |
| .header__main { | |
| border-bottom: 1px solid var(--color-border); | |
| padding-top: var(--space-sm); | |
| padding-bottom: var(--space-sm); | |
| background: var(--white); | |
| } | |
| .header__nav { | |
| ul { | |
| display: flex; | |
| } | |
| li { | |
| margin-right: var(--space-md); | |
| &:last-child { | |
| margin-right: 0; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment