Created
July 21, 2021 00:09
-
-
Save Brlaney/5dbf888b31fc34d5b4a3f21a761b4f44 to your computer and use it in GitHub Desktop.
A next.js app's globals.scss file example
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
@import 'themes'; | |
html, | |
body { | |
padding: 0; | |
margin: 0; | |
background: $c-bg; | |
color: #fff; | |
font-family: $primary-font-family; | |
} | |
a { | |
color: inherit; | |
} | |
* { | |
box-sizing: border-box; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment