Skip to content

Commit

Permalink
Merge pull request #271 from prezly/fix/mt-5199-entry-points-styling-…
Browse files Browse the repository at this point in the history
…regression

[MT-5199] Fix - Entry points styling regression
  • Loading branch information
e1himself authored Jul 26, 2022
2 parents c4d0a2d + 4d93c4a commit 9886e54
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ function EntryPoint(props: { element: ElementNode; position: 'top' | 'bottom'; t
<div
data-block-entry-point={true}
className={classNames(styles.EntryPoint, {
top: position === 'top',
bottom: position === 'bottom',
[styles.top]: position === 'top',
[styles.bottom]: position === 'bottom',
})}
contentEditable={false}
onClick={handleClick}
Expand Down

0 comments on commit 9886e54

Please sign in to comment.