Skip to content

Commit

Permalink
fix(ui-markdown-editor): Resize clickable area - #318
Browse files Browse the repository at this point in the history
Signed-off-by: k-kumar-01 <[email protected]>
  • Loading branch information
K-Kumar-01 authored and jolanglinais committed Apr 2, 2021
1 parent bfeb3e7 commit 20ba3fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions packages/ui-markdown-editor/src/components/icons/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ const icon = () => (
const image = {
type: 'image',
label: `Insert Image (${MOD()}+Shift+G)`,
height: '18px',
width: '18px',
height: '25px',
width: '25px',
padding: '4px',
viewBox: '0 0 18 18',
icon,
};
Expand Down
5 changes: 3 additions & 2 deletions packages/ui-markdown-editor/src/components/icons/tbreak.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ const icon = () => (
const tbreak = {
type: 'horizontal_rule',
label: `Page Break (${MOD()}+Enter)`,
height: '17px',
width: '17px',
height: '25px',
width: '25px',
padding: '4px',
viewBox: '0 0 19 19',
icon,
};
Expand Down

0 comments on commit 20ba3fc

Please sign in to comment.