Add quotes

Sass compilers can sometimes be weird if import urls like this aren't quoted. They'll spit out junk like

```
Error: Encountered invalid @import syntax.
```

Anyways, pretty common practice to use quotes for all imports. I mean, seriously, how much more do you want me to write for a dang PR that adds a pair of quotes? I've got work to do, gah.
This commit is contained in:
Jeffrey Way 2017-06-06 09:49:05 -04:00 committed by GitHub
parent e50ca3dc87
commit 4569aebc18
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
// Fonts // Fonts
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600); @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
// Variables // Variables
@import "variables"; @import "variables";