Lint
This commit is contained in:
parent
e0aa34d540
commit
f1acf34fbd
|
@ -1,26 +1,26 @@
|
||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
export default {
|
export default {
|
||||||
content: ['./src/**/*.vue'],
|
content: ["./src/**/*.vue"],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
edit: {
|
edit: {
|
||||||
DEFAULT: 'hsl(20, 77%, 55%)',
|
DEFAULT: "hsl(20, 77%, 55%)",
|
||||||
},
|
|
||||||
primary: {
|
|
||||||
DEFAULT: 'var(--primary)',
|
|
||||||
},
|
|
||||||
secondary: {
|
|
||||||
DEFAULT: 'var(--secondary)',
|
|
||||||
},
|
|
||||||
font: {
|
|
||||||
DEFAULT: 'var(--font)',
|
|
||||||
},
|
|
||||||
circle: {
|
|
||||||
DEFAULT: 'var(--circle)',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
primary: {
|
||||||
|
DEFAULT: "var(--primary)",
|
||||||
|
},
|
||||||
|
secondary: {
|
||||||
|
DEFAULT: "var(--secondary)",
|
||||||
|
},
|
||||||
|
font: {
|
||||||
|
DEFAULT: "var(--font)",
|
||||||
|
},
|
||||||
|
circle: {
|
||||||
|
DEFAULT: "var(--circle)",
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
plugins: [require('@tailwindcss/container-queries')],
|
},
|
||||||
|
plugins: [require("@tailwindcss/container-queries")],
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue