mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-29 19:43:43 +02:00
Get basic compiling working with new CSS setup
This commit is contained in:
10
resources/scripts/theme.ts
Normal file
10
resources/scripts/theme.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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,
|
||||
});
|
||||
Reference in New Issue
Block a user