web-4/frontend/tailwind.config.js

15 lines
291 B
JavaScript
Raw Normal View History

2024-12-24 01:21:02 +03:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
screens: {
'sm': '703px',
'lg': '1219px',
},
},
},
plugins: [],
}