mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import { BreakpointFunction, createBreakpoint } from 'styled-components-breakpoint';
|
|
|
|
type Breakpoints = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
export const breakpoint: BreakpointFunction<Breakpoints> = createBreakpoint<Breakpoints>({
|
|
xs: 0,
|
|
sm: 640,
|
|
md: 768,
|
|
lg: 1024,
|
|
xl: 1280,
|
|
});
|