23 lines
543 B
JavaScript
23 lines
543 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const plugin = require("tailwindcss/plugin");
|
|
|
|
module.exports = {
|
|
content: ["./**/*.html", "./**/*.ts"],
|
|
theme: {
|
|
extend: {
|
|
maxHeight: {
|
|
"65vh": "65vh",
|
|
"20vh": "20vh",
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
plugin(function ({ addVariant, e }) {
|
|
addVariant("landscape", ({ modifySelectors, separator }) => {
|
|
modifySelectors(({ className }) => {
|
|
return `.${e(`landscape${separator}${className}`)}:landscape`;
|
|
});
|
|
});
|
|
}),
|
|
],
|
|
};
|