mirror of
https://github.com/aljazceru/AgentGPT.git
synced 2025-12-17 05:54:20 +01:00
🔥 Better screen breakpoints
This commit is contained in:
@@ -1,15 +1,19 @@
|
|||||||
/** @type {import("tailwindcss").Config} */
|
/** @type {import("tailwindcss").Config} */
|
||||||
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
|
||||||
screens: {
|
screens: {
|
||||||
"xs": "350px",
|
"xs": "300px",
|
||||||
|
|
||||||
"sm-h": { "raw": "(min-height: 700px)" },
|
"sm-h": { "raw": "(min-height: 700px)" },
|
||||||
"md-h": { "raw": "(min-height: 900px)" },
|
"md-h": { "raw": "(min-height: 900px)" },
|
||||||
"lg-h": { "raw": "(min-height: 1000px)" }
|
"lg-h": { "raw": "(min-height: 1000px)" },
|
||||||
}
|
|
||||||
}
|
...defaultTheme.screens
|
||||||
|
},
|
||||||
|
extend: {}
|
||||||
},
|
},
|
||||||
plugins: []
|
plugins: []
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user