Simple header menu

This commit is contained in:
Jori Lallo
2016-04-30 11:46:32 -07:00
parent cce82b3d43
commit 12f0e5d501
9 changed files with 145 additions and 16 deletions

View File

@@ -1,3 +1,5 @@
@import './constants.scss';
* {
box-sizing: border-box;
}
@@ -10,6 +12,7 @@ html, body, .viewport {
html, body {
font-family: 'Atlas Grotesk', 'Helvetica Neue', sans-serif;
color: $textColor;
}
a {

5
src/utils/constants.scss Normal file
View File

@@ -0,0 +1,5 @@
$textColor: #171B35;
:export {
textColor: $textColor;
}