Skip to content

Commit

Permalink
logo border radius to fix right angle images looking ugly
Browse files Browse the repository at this point in the history
  • Loading branch information
NotChristianGarcia committed Aug 14, 2024
1 parent 9d538a6 commit 74c34b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/_components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ const Sidebar: React.FC = () => {
<img
style={
expanded
? { maxHeight: '50px', maxWidth: '9rem' }
: { height: '50px', maxWidth: '4.2rem' }
? { maxHeight: '50px', maxWidth: '9rem', borderRadius: '6px' }
: { height: '50px', maxWidth: '4.2rem', borderRadius: '6px' }
}
className="logo"
src={
Expand Down

0 comments on commit 74c34b3

Please sign in to comment.