Whole lotta love.

This commit is contained in:
Dan Chadwick
2024-11-18 18:44:53 -05:00
parent 40324ae10b
commit 13971f626c
80 changed files with 2746 additions and 1495 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -11,9 +11,12 @@
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.20",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-sass": "^5.1.0"
"gulp-sass": "^5.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13"
},
"dependencies": {
"sass": "^1.71.1"

View File

@@ -1,3 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
// Colors.
:root {
--site-primary: #009FB7;

View File

@@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/**.{scss}"],
theme: {
extend: {},
},
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}