Skip to content

Commit

Permalink
Merge pull request #2104 from shanberg/fix-clicking-todo
Browse files Browse the repository at this point in the history
fix: more elements interactable within blocks
  • Loading branch information
filipesilva authored Apr 4, 2022
2 parents 2a82bc7 + a047f00 commit 11ebd51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/components/Block/components/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ const _Content = ({ children, fontSize, ...props }) => {
"div, span, p, blockquote": {
pointerEvents: "none",
},
// activate interactive content (links, buttons)
"a, button": {
// activate interactive content (links, buttons, etc.)
"a, button, label, video, embed, iframe, img": {
pointerEvents: "auto",
zIndex: 2,
position: "relative"
Expand Down

0 comments on commit 11ebd51

Please sign in to comment.