mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-26 10:31:17 +00:00
- Implement compact mobile navigation with label truncation on xs screens - Optimize Alerts Overview with tighter spacing and better description truncation - Enhance Storage table mobile view: consolidate Shared column, use StatusDots, and increase bar thickness - Increase Node Summary table row height and column min-widths for readability - Add xs (400px) breakpoint for granular mobile styling
37 lines
No EOL
695 B
JavaScript
37 lines
No EOL
695 B
JavaScript
import typography from '@tailwindcss/typography';
|
|
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
screens: {
|
|
'xs': '400px',
|
|
'sm': '640px',
|
|
'md': '768px',
|
|
'lg': '1024px',
|
|
'xl': '1280px',
|
|
'2xl': '1536px',
|
|
},
|
|
extend: {
|
|
colors: {
|
|
gray: {
|
|
750: '#2d3748',
|
|
}
|
|
},
|
|
animation: {
|
|
'spin-slow': 'spin 2s linear infinite',
|
|
'fadeIn': 'fadeIn 0.2s ease-in',
|
|
},
|
|
keyframes: {
|
|
fadeIn: {
|
|
'0%': { opacity: '0' },
|
|
'100%': { opacity: '1' },
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [typography],
|
|
} |