Merge pull request #16454 from ramonlsouza/issue-16356

fix(tldraw): cannot select multiple objects
This commit is contained in:
Ramón Souza 2023-01-12 11:32:52 -03:00 committed by GitHub
commit 6587e24af8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,6 +65,10 @@ const TldrawGlobalStyle = createGlobalStyle`
#TD-PrimaryTools-Image {
display: none;
}
#slide-background-shape div {
pointer-events: none;
}
`;
export default function Whiteboard(props) {