feat: check screen size to enable or disable settings

+ redesign (again!) the playlist cards
This commit is contained in:
geoffrey45
2022-09-17 14:24:05 +03:00
parent fca59751c4
commit 5130f85300
13 changed files with 50 additions and 36 deletions
+7 -3
View File
@@ -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 };