1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-09 00:22:49 +00:00
Files
react-starter/app/scss/style.scss
2018-01-03 22:36:25 +01:00

24 lines
288 B
SCSS

html {
font-family: 'Roboto Condensed', sans-serif;
}
body {
color: $fontPrimary;
background-color: $white;
}
.fa {
margin-right: 5px;
margin-left: 5px;
}
a {
text-decoration: none;
color: $fontPrimary;
transition: all 0.1s linear;
&:hover {
color: $blue;
}
}