Converting from SASS to SCSS

This commit is contained in:
2025-07-01 13:56:45 -04:00
parent e06f3274ec
commit 604025179c
3 changed files with 7 additions and 2 deletions

View File

@ -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
View File

@ -0,0 +1,5 @@
$primary-color: teal;
body {
background: #eee;
}