Fix incorrect alignment on 2FA boxes due to incorrect TW breakpoints (#3914)
This commit is contained in:
parent
5c229d60e3
commit
0ff60d83eb
2 changed files with 18 additions and 16 deletions
|
@ -3,8 +3,8 @@ import { BreakpointFunction, createBreakpoint } from 'styled-components-breakpoi
|
|||
type Breakpoints = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
||||
export const breakpoint: BreakpointFunction<Breakpoints> = createBreakpoint<Breakpoints>({
|
||||
xs: 0,
|
||||
sm: 576,
|
||||
sm: 640,
|
||||
md: 768,
|
||||
lg: 992,
|
||||
xl: 1200,
|
||||
lg: 1024,
|
||||
xl: 1280,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue