Skip to content

Commit

Permalink
fix: Profile badge overflow in history entry
Browse files Browse the repository at this point in the history
  • Loading branch information
areknawo committed Jun 27, 2024
1 parent 1103a7f commit 94eb94c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/views/history/history-entry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ const HistoryEntry: Component<HistoryEntryProps> = (props) => {
return (
<div
style={{
"margin-right": `-${index() * 0.6}rem`,
"margin-right": `-${index() > 0 ? 0.6 : 0}rem`,
"opacity": `${1 - index() * 0.1}`,
"z-index": index()
}}
Expand Down

0 comments on commit 94eb94c

Please sign in to comment.