Fix incorrect alignment on 2FA boxes due to incorrect TW breakpoints (#3914)

This commit is contained in:
Mrxbox98 2022-02-05 09:08:11 -08:00 committed by GitHub
parent 5c229d60e3
commit 0ff60d83eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 16 deletions

View file

@ -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,
});