mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 11:12:48 +00:00
- Added `@tailwindcss/postcss` and `tailwind-merge` to package dependencies for better Tailwind CSS integration. - Updated `tailwindcss` to version 4.1.16. - Enhanced `TrackCard` and `TrackModal` components with new styling and functionality, including support for `lpTV` badges. - Refactored CSS imports and layout structure in `index.css` and `page.tsx` for improved responsiveness and visual appeal. - Updated album data in `list.ts` to reflect accurate track information and descriptions.
15 lines
337 B
JavaScript
15 lines
337 B
JavaScript
export default {
|
|
plugins: {
|
|
"@tailwindcss/postcss": {},
|
|
"postcss-preset-mantine": {},
|
|
"postcss-simple-vars": {
|
|
variables: {
|
|
"mantine-breakpoint-xs": "36em",
|
|
"mantine-breakpoint-sm": "48em",
|
|
"mantine-breakpoint-md": "62em",
|
|
"mantine-breakpoint-lg": "75em",
|
|
"mantine-breakpoint-xl": "88em",
|
|
},
|
|
},
|
|
},
|
|
};
|