Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/scripts/theme.ts
7458 views
1
import { BreakpointFunction, createBreakpoint } from 'styled-components-breakpoint';
2
3
type Breakpoints = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
export const breakpoint: BreakpointFunction<Breakpoints> = createBreakpoint<Breakpoints>({
5
xs: 0,
6
sm: 640,
7
md: 768,
8
lg: 1024,
9
xl: 1280,
10
});
11
12