Converting from SASS to SCSS
This commit is contained in:
@ -12,7 +12,7 @@ module.exports = function (grunt) {
|
||||
{
|
||||
expand: true,
|
||||
cwd: "assets/styles",
|
||||
src: ["**/*.sass"],
|
||||
src: ["**/*.scss"],
|
||||
dest: "public/css",
|
||||
ext: ".css",
|
||||
},
|
||||
@ -37,7 +37,7 @@ module.exports = function (grunt) {
|
||||
|
||||
watch: {
|
||||
css: {
|
||||
files: ["assets/styles/**/*.sass"],
|
||||
files: ["assets/styles/**/*.scss"],
|
||||
tasks: ["sass"],
|
||||
options: {
|
||||
atBegin: true,
|
||||
|
5
assets/styles/eye.scss
Normal file
5
assets/styles/eye.scss
Normal file
@ -0,0 +1,5 @@
|
||||
$primary-color: teal;
|
||||
|
||||
body {
|
||||
background: #eee;
|
||||
}
|
Reference in New Issue
Block a user