add large breakpoint for undo/redo
This commit is contained in:
parent
4b946edeac
commit
8328a7a9f7
3 changed files with 3 additions and 1 deletions
|
@ -83,7 +83,7 @@ const MobileOnly = styled('div', {
|
|||
small: {
|
||||
display: 'inherit',
|
||||
},
|
||||
medium: {
|
||||
large: {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
|
|
|
@ -8,4 +8,5 @@ export const breakpoints: any = {
|
|||
'@micro': 'micro',
|
||||
'@sm': 'small',
|
||||
'@md': 'medium',
|
||||
'@lg': 'large',
|
||||
}
|
||||
|
|
|
@ -77,6 +77,7 @@ const { styled, createTheme } = createStitches({
|
|||
micro: '(max-width: 370px)',
|
||||
sm: '(min-width: 640px)',
|
||||
md: '(min-width: 768px)',
|
||||
lg: '(min-width: 1024px)',
|
||||
},
|
||||
utils: {
|
||||
zStrokeWidth: () => (value: number | number[]) => {
|
||||
|
|
Loading…
Reference in a new issue