Last active
July 13, 2017 22:40
-
-
Save willywg/2ae907858ddf9b8a3735e8d138801d14 to your computer and use it in GitHub Desktop.
Revisions
-
willywg revised this gist
Jul 13, 2017 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -29,5 +29,4 @@ Finally run: ```bash yarn run dev ``` -
willywg revised this gist
Jul 13, 2017 . 1 changed file with 16 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,12 @@ Add sass pre-procesor: ```bash yarn add node-sass sass-loader -D ``` Add bulma ```bash yarn add bulma ``` @@ -17,3 +17,17 @@ css: [ { src: '~assets/sass/main.sass', lang: 'sass' } ] ``` Make this sass file on assets/sass/main.sass: ```sass $primary: #4c4c6e @import "../../node_modules/bulma/bulma.sass" ``` Finally run: ```bash yarn run dev ``` $primary: #4c4c6e -
willywg revised this gist
Jul 13, 2017 . 1 changed file with 15 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,4 +2,18 @@ Add sass pre-procesor: ``` yarn add node-sass sass-loader -D ``` Add bulma ``` yarn add bulma ``` Edit nuxt.config.js and add: ```javascript css: [ { src: '~assets/sass/main.sass', lang: 'sass' } ] ``` -
willywg created this gist
Jul 13, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ Add sass pre-procesor: ``` yarn add node-sass sass-loader -D ```