Files
swingmusic-extended/src/composables/useBreakpoints.ts
T
geoffrey45 26ab972a8d fix fuzzy search: FuseTrackOptions
+ 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
2023-01-13 18:13:49 +03:00

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 };