Pathora_Colposcopy_Assistant / tailwind.config.js
nusaibah0110's picture
Initial deployment of Pathora Colposcopy Assistant
bab7e89
raw
history blame contribute delete
492 Bytes
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
screens: {
'xs': '320px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
'tablet': '768px',
'tablet-landscape': { 'raw': '(min-width: 768px) and (orientation: landscape)' },
},
spacing: {
'safe': 'max(1rem, env(safe-area-inset-bottom))',
}
}
}
}