big cleanup

This commit is contained in:
Steve Ruiz 2021-06-21 22:35:28 +01:00
parent daa44f9911
commit 864ded959a
161 changed files with 2918 additions and 5749 deletions

View file

@ -1,5 +1,4 @@
import * as _ContextMenu from '@radix-ui/react-context-menu'
import * as _Dropdown from '@radix-ui/react-dropdown-menu'
import styled from 'styles'
import {
IconWrapper,
@ -79,7 +78,7 @@ export default function ContextMenu({
children,
}: {
children: React.ReactNode
}) {
}): JSX.Element {
const selectedShapes = useSelector(
(s) => getSelectedShapes(s.data),
deepCompareArrays
@ -357,7 +356,6 @@ function SubMenu({
}
function AlignDistributeSubMenu({
hasTwoOrMore,
hasThreeOrMore,
}: {
hasTwoOrMore: boolean
@ -474,31 +472,6 @@ function MoveToPageMenu() {
)
}
const StyledDialogContent = styled(_Dropdown.Content, {
// position: 'fixed',
// top: '50%',
// left: '50%',
// transform: 'translate(-50%, -50%)',
// minWidth: 200,
// maxWidth: 'fit-content',
// maxHeight: '85vh',
// marginTop: '-5vh',
minWidth: 128,
backgroundColor: '$panel',
borderRadius: '4px',
overflow: 'hidden',
pointerEvents: 'all',
userSelect: 'none',
zIndex: 200,
padding: 2,
border: '1px solid $panel',
boxShadow: '0px 2px 4px rgba(0,0,0,.2)',
'&:focus': {
outline: 'none',
},
})
const StyledArrow = styled(_ContextMenu.Arrow, {
fill: 'white',
})