doc: update tailwind configuration
This commit is contained in:
+24
-3
@@ -1,11 +1,32 @@
|
||||
module.exports = {
|
||||
purge: ['./public/**/*.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
||||
purge: { content: ["./public/**/*.html", "./src/**/*.vue"] },
|
||||
darkMode: false, // or 'media' or 'class'
|
||||
theme: {
|
||||
extend: {},
|
||||
extend: {
|
||||
colors: {
|
||||
"at-light-green": "#44ba9f",
|
||||
"at-green": "#286d5d",
|
||||
"light-grey": "#f1f1f1",
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
Poppins: ["Poppins, sans-serif"],
|
||||
},
|
||||
flex: {
|
||||
"1": "1 1 0%",
|
||||
"2": "2 2 0%",
|
||||
},
|
||||
container: {
|
||||
center: true,
|
||||
screens: {
|
||||
lg: "1124px",
|
||||
xl: "1124px",
|
||||
"2xl": "1124px",
|
||||
},
|
||||
},
|
||||
},
|
||||
variants: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user