ConceptPortal-public/rsconcept/frontend/tailwind.config.js

30 lines
571 B
JavaScript
Raw Normal View History

2023-07-15 17:46:19 +03:00
/** @type {import('tailwindcss').Config} */
2024-08-28 23:40:55 +03:00
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
2023-07-15 17:46:19 +03:00
darkMode: 'class',
2023-12-30 14:46:43 +03:00
content: ['./src/**/*.{js,jsx,ts,tsx}'],
2023-07-15 17:46:19 +03:00
theme: {
zIndex: {
bottom: '0',
topmost: '99',
pop: '10',
sticky: '20',
tooltip: '30',
navigation: '50',
modal: '60',
modalControls: '70',
modalTooltip: '90'
},
2024-08-28 23:40:55 +03:00
screens: {
xs: '475px',
...defaultTheme.screens
},
2023-12-30 14:46:43 +03:00
extend: {}
2023-07-15 17:46:19 +03:00
},
plugins: [],
experimental: {
optimizeUniversalDefaults: true
}
2023-12-30 14:46:43 +03:00
};