Upgrade to tailwindcss v3

This commit is contained in:
khatabwedaa
2021-12-10 13:38:19 +02:00
parent 30ec6c2f48
commit b9e22969cf
8 changed files with 348 additions and 691 deletions

View File

@@ -1,8 +1,9 @@
const colors = require("tailwindcss/colors");
module.exports = {
purge: [
"./components/**/*.{vue,js}",
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
@@ -24,9 +25,6 @@ module.exports = {
animation: {
float: "float 4s ease-in-out infinite",
},
colors: {
teal: colors.teal,
},
fontFamily: {
roboto: ["Roboto", "sans-serif"],
},
@@ -37,8 +35,5 @@ module.exports = {
},
},
},
variants: {
extend: {},
},
plugins: [],
};