You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
540 B
JavaScript
31 lines
540 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./input.css",
|
|
"./static/**/*.html",
|
|
"./static/dist/output.css",
|
|
"./templates/**/*.html",
|
|
],
|
|
theme: {
|
|
screens: {
|
|
xs: '380px',
|
|
xsm: '500px',
|
|
sm: '550px',
|
|
s: '650px',
|
|
md: '798px',
|
|
l: '960px',
|
|
lg: '1110px',
|
|
xlg1: '1200px',
|
|
xlg: '1300px',
|
|
xxlg1: '1350px',
|
|
xxlg: '1390px',
|
|
xl: '1536px',
|
|
xxl: '1750px',
|
|
k: '2400px',
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|