Skip to content

Commit

Permalink
fix: black horizontal line sometimes appearing below section (#1510)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieujacq authored Oct 26, 2023
1 parent c2bf3ad commit f810d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/(home)/components/HomeSection/HomeSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const HomeSection = ({
</section>
{gradient !== undefined ? (
<div
className={`absolute w-screen bottom-[calc(100vw*tan(6deg))] left-0 h-[30%] ${gradient}`}
className={`absolute w-screen bottom-[calc(100vw*tan(6deg)-1px)] left-0 h-[30%] ${gradient}`}
/>
) : null}
</div>
Expand Down

0 comments on commit f810d8f

Please sign in to comment.