static-cms/tailwind.base.config.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-03-30 13:29:09 -04:00
module.exports = {
2023-05-05 17:11:59 -04:00
darkMode: "class",
2023-03-30 13:29:09 -04:00
theme: {
extend: {
height: {
2023-05-05 17:11:59 -04:00
main: "calc(100vh - 64px)",
"media-library-dialog": "80vh",
"media-card": "240px",
"media-preview-image": "104px",
"media-card-image": "196px",
"image-card": "120px",
input: "24px",
2023-03-30 13:29:09 -04:00
},
minHeight: {
2023-05-05 17:11:59 -04:00
8: "2rem",
"markdown-toolbar": "40px",
2023-03-30 13:29:09 -04:00
},
width: {
2023-05-05 17:11:59 -04:00
main: "calc(100% - 256px)",
preview: "calc(100% - 450px)",
"sidebar-expanded": "256px",
"sidebar-collapsed": "68px",
"editor-only": "640px",
"media-library-dialog": "80vw",
"media-card": "240px",
"media-preview-image": "126px",
"image-card": "120px",
2023-03-30 13:29:09 -04:00
},
maxWidth: {
2023-05-05 17:11:59 -04:00
"media-search": "400px",
2023-03-30 13:29:09 -04:00
},
boxShadow: {
2023-05-05 17:11:59 -04:00
sidebar: "0 10px 15px 18px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
2023-03-30 13:29:09 -04:00
},
gridTemplateColumns: {
2023-05-05 17:11:59 -04:00
editor: "450px auto",
"media-preview": "126px auto",
images: "repeat(auto-fit, 120px)",
2023-03-30 13:29:09 -04:00
},
fontFamily: {
2023-05-05 17:11:59 -04:00
sans: ["Inter var", "Inter", "ui-sans-serif", "system-ui", "sans-serif"],
},
2023-03-30 13:29:09 -04:00
},
},
};