ConceptPortal-public/rsconcept/frontend/tailwind.config.js
Ivan 5edf08a5cb
Some checks are pending
Frontend CI / build (22.x) (push) Waiting to run
F: Add xs size screen media query
2024-08-28 23:49:39 +03:00

30 lines
571 B
JavaScript

/** @type {import('tailwindcss').Config} */
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
darkMode: 'class',
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
zIndex: {
bottom: '0',
topmost: '99',
pop: '10',
sticky: '20',
tooltip: '30',
navigation: '50',
modal: '60',
modalControls: '70',
modalTooltip: '90'
},
screens: {
xs: '475px',
...defaultTheme.screens
},
extend: {}
},
plugins: [],
experimental: {
optimizeUniversalDefaults: true
}
};