mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
feat: check screen size to enable or disable settings
+ redesign (again!) the playlist cards
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
import { useBreakpoints, breakpointsTailwind } from "@vueuse/core";
|
||||
import { useBreakpoints } from "@vueuse/core";
|
||||
|
||||
const breakpoints = useBreakpoints(breakpointsTailwind);
|
||||
const breakpoints = useBreakpoints({
|
||||
xl: 1536,
|
||||
xxl: 1720,
|
||||
});
|
||||
|
||||
const xl = breakpoints.greater("xl");
|
||||
const xxl = breakpoints.greater("xxl");
|
||||
|
||||
export { xl };
|
||||
export { xl, xxl };
|
||||
|
||||
Reference in New Issue
Block a user