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} */
|
||||
const defaultTheme = require("tailwindcss/defaultTheme");
|
||||
|
||||
module.exports = {
|
||||
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
||||
theme: {
|
||||
extend: {
|
||||
screens: {
|
||||
"xs": "350px",
|
||||
"sm-h": { "raw": "(min-height: 700px)" },
|
||||
"md-h": { "raw": "(min-height: 900px)" },
|
||||
"lg-h": { "raw": "(min-height: 1000px)" }
|
||||
}
|
||||
}
|
||||
screens: {
|
||||
"xs": "300px",
|
||||
|
||||
"sm-h": { "raw": "(min-height: 700px)" },
|
||||
"md-h": { "raw": "(min-height: 900px)" },
|
||||
"lg-h": { "raw": "(min-height: 1000px)" },
|
||||
|
||||
...defaultTheme.screens
|
||||
},
|
||||
extend: {}
|
||||
},
|
||||
plugins: []
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user