2019-10-10 21:58:00 +03:00
|
|
|
module.exports = {
|
2020-12-13 22:11:04 +02:00
|
|
|
important: true,
|
2019-10-10 21:58:00 +03:00
|
|
|
theme: {
|
2020-12-13 22:11:04 +02:00
|
|
|
extend: {
|
|
|
|
lineHeight: {
|
2021-09-11 19:06:51 +03:00
|
|
|
zero: "0",
|
2020-12-13 22:11:04 +02:00
|
|
|
},
|
|
|
|
flex: {
|
2021-09-11 19:06:51 +03:00
|
|
|
full: "0 0 100%",
|
|
|
|
flexible: "1 1 0",
|
|
|
|
},
|
2020-12-13 23:11:23 +02:00
|
|
|
},
|
|
|
|
screens: {
|
2021-09-11 19:06:51 +03:00
|
|
|
sm: "640px",
|
|
|
|
md: "768px",
|
|
|
|
"until-lg": { max: "1023px" },
|
|
|
|
lg: "1024px",
|
|
|
|
xl: "1280px",
|
|
|
|
"2xl": "1536px",
|
|
|
|
},
|
2019-10-10 21:58:00 +03:00
|
|
|
},
|
|
|
|
variants: {},
|
2021-09-11 19:06:51 +03:00
|
|
|
plugins: [],
|
2023-06-24 09:21:06 +00:00
|
|
|
purge: ["./src/**/*.{html,vue}"],
|
|
|
|
future: {
|
|
|
|
purgeLayersByDefault: true,
|
|
|
|
},
|
2021-09-11 19:06:51 +03:00
|
|
|
};
|