misc_pterodactyl-panel/resources/scripts/theme.ts

11 lines
298 B
TypeScript
Raw Normal View History

import { BreakpointFunction, createBreakpoint } from 'styled-components-breakpoint';
type Breakpoints = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
export const breakpoint: BreakpointFunction<Breakpoints> = createBreakpoint<Breakpoints>({
xs: 0,
2020-07-03 21:19:05 +00:00
sm: 576,
md: 768,
2020-07-03 21:19:05 +00:00
lg: 992,
xl: 1200,
});