Skip to content

Commit

Permalink
feat: align comments icon, so it is at the left of the view box
Browse files Browse the repository at this point in the history
  • Loading branch information
1emu committed Sep 27, 2023
1 parent a46cd56 commit 6ecf7b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/FloatingBar/FloatingBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,15 @@
line-height: 24px;
font-weight: var(--weight-semi-bold);
text-transform: uppercase;
gap: 5px;
gap: 2px;
display: flex;
align-items: center;
}

.FloatingBar__ReactionsImg {
height: 24px;
width: 36px;
margin-left: 3px;
}

.FloatingBar__JoinDiscussion {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icon/Forum.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'

function Forum({ size = 24, color = 'var(--black-800)' }: { size?: number; color?: string }) {
return (
<svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} fill="none" viewBox="0 0 24 24">
<svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} fill="none" viewBox="2 0 24 24">
<path
fill={color}
fillRule="evenodd"
Expand Down

0 comments on commit 6ecf7b0

Please sign in to comment.