Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mfix22 committed May 14, 2022
1 parent 26d1f95 commit 27108aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/ShareMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function ShareMenu({ isVisible, toggleVisibility, tweet, imgur }) {
<ArrowDown color={COLORS.BLUE} />
</Button>
</div>
<Popout hidden={!isVisible} borderColor={COLORS.BLUE} pointerRight="7px" style={popoutStyle}>
<Popout hidden={!isVisible} borderColor={COLORS.BLUE} pointerRight="6px" style={popoutStyle}>
<div className="share-row flex">
<Button padding="8px" color={COLORS.BLUE} onClick={onClickImgur}>
{imguring ? 'Uploading...' : 'Upload to Imgur (beta)'}
Expand Down
6 changes: 3 additions & 3 deletions components/SnippetToolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ function SnippetToolbar({
return (
<Toolbar
style={{
position: 'relative',
zIndex: 1,
marginTop: 16,
marginBottom: 0,
flexDirection: 'row-reverse',
alignItems: 'center',
zIndex: 1,
position: 'relative',
}}
>
<div className="flex">
Expand Down Expand Up @@ -150,7 +150,7 @@ function SnippetToolbar({
onChange={e => props.onChange('name', e.target.value)}
/>
</div>
<Popout hidden={!isVisible} borderColor={COLORS.GREEN} pointerRight="7px" style={popoutStyle}>
<Popout hidden={!isVisible} borderColor={COLORS.GREEN} pointerRight="6px" style={popoutStyle}>
<div className="menu flex">
<DuplicateButton onClick={props.onCreate} />
{sameUser && <DeleteButton onClick={props.onDelete} />}
Expand Down

0 comments on commit 27108aa

Please sign in to comment.