Better disabled textbox style

This commit is contained in:
space-nuko
2023-05-09 16:28:49 -05:00
parent 4ca5d01d6a
commit da61d3d7de
6 changed files with 39 additions and 1 deletions

View File

@@ -1,4 +1,9 @@
import sveltePreprocess from "svelte-preprocess";
import path, { dirname } from 'path'
import { fileURLToPath } from 'url'
const filePath = dirname(fileURLToPath(import.meta.url))
const scssPath = `./src/scss`
const config = {
preprocess: [
@@ -8,6 +13,9 @@ const config = {
debug: true,
}
},
scss: {
prependData: `@import '${scssPath}/global.scss';`
}
})
]
};