Skip to content

Commit

Permalink
style: reduce offset on icons
Browse files Browse the repository at this point in the history
  • Loading branch information
teodorus-nathaniel committed Jan 4, 2024
1 parent 26645e8 commit fe878ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/posts/share/ShareDropdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const ShareMenu = (props: ShareMenuProps) => {
}

const ShareIcon = (
<AiOutlineShareAlt className='FontLarge' style={{ position: 'relative', top: '0.07em' }} />
<AiOutlineShareAlt className='FontLarge' style={{ position: 'relative', top: '0.04em' }} />
)

export const ShareDropdown = (props: ShareMenuProps) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/voting/SuperLike.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function SuperLike({ post, ...props }: SuperLikeProps) {
localStorage.setItem(FIRST_TIME_SUPERLIKE, 'false')
}

const likeStyle: CSSProperties = { position: 'relative', top: '0.07em' }
const likeStyle: CSSProperties = { position: 'relative', top: '0.04em' }
const icon = isActive ? (
<AiFillHeart className='FontLarge ColorPrimary' style={likeStyle} />
) : (
Expand Down

0 comments on commit fe878ea

Please sign in to comment.