Skip to content

Commit

Permalink
Merge pull request #607 from primer/overflow-visible
Browse files Browse the repository at this point in the history
Prevent clipping using `overflow: visible`
  • Loading branch information
colebemis committed May 13, 2021
2 parents 5b42ccb + 9808e71 commit 1606603
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/octicons_node/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
display: inline-block;
vertical-align: text-top;
fill: currentColor;
overflow: visible;
}
3 changes: 2 additions & 1 deletion lib/octicons_react/src/get-svg-props.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export default function getSvgProps({
style: {
display: 'inline-block',
userSelect: 'none',
verticalAlign
verticalAlign,
overflow: 'visible'
},
dangerouslySetInnerHTML: {__html: path}
}
Expand Down

0 comments on commit 1606603

Please sign in to comment.