Skip to content

Commit 4569aeb

Browse files
authored
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.
1 parent e50ca3d commit 4569aeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/assets/sass/app.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
// Fonts
3-
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);
3+
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
44

55
// Variables
66
@import "variables";

0 commit comments

Comments
 (0)