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

21 lines
387 B
JavaScript
Raw Normal View History

2023-07-15 17:46:19 +03:00
/** @type {import('tailwindcss').Config} */
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'
},
2023-12-30 14:46:43 +03:00
extend: {}
2023-07-15 17:46:19 +03:00
},
2023-12-30 14:46:43 +03:00
plugins: []
};