mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
26ab972a8d
+ reduce width required to hide sidebar automatically + move ArtistAlbumsFetcher.vue to components folder + escape ALT button in keyboard shortcuts + use elem.dispatchEvent to toggle page search
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
import { useBreakpoints } from "@vueuse/core";
|
|
|
|
const breakpoints = useBreakpoints({
|
|
xl: 1280,
|
|
xxl: 1720,
|
|
});
|
|
|
|
const xl = breakpoints.greater("xl");
|
|
const xxl = breakpoints.greater("xxl");
|
|
|
|
export { xl, xxl };
|