added tailwind to the project, we shall see how it goes.

This commit is contained in:
ajdj100
2023-05-20 00:09:58 -04:00
parent a0907bba4d
commit 03a82ca88a
5 changed files with 509 additions and 98 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -21,9 +21,12 @@
"@vitejs/plugin-vue": "^4.2.1", "@vitejs/plugin-vue": "^4.2.1",
"@vue/cli-plugin-router": "~5.0.0", "@vue/cli-plugin-router": "~5.0.0",
"@vue/eslint-config-prettier": "^7.1.0", "@vue/eslint-config-prettier": "^7.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.39.0", "eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0", "eslint-plugin-vue": "^9.11.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8", "prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"vite": "^4.3.4" "vite": "^4.3.4"
} }
} }

View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

View File

@@ -1,4 +1,9 @@
/* color palette from <https://github.com/vuejs/theme> */ /* color palette from <https://github.com/vuejs/theme> */
@tailwind base;
@tailwind components;
@tailwind utilities;
:root { :root {
--background-primary: #272731; --background-primary: #272731;
--background-secondary: #1C1C21; --background-secondary: #1C1C21;

View File

@@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}