Skip to content

Commit

Permalink
fix: remove hero section gradient (#1127)
Browse files Browse the repository at this point in the history
I haven't found that it was visible somewhere and it caused problems on
mobile because it was covering content under it.

reported here:
https://apify.slack.com/archives/C0L33UM7Z/p1722246967335289
  • Loading branch information
webrdaniel authored Jul 30, 2024
1 parent d6d5d53 commit 1b59fb2
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/components/Hero/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,6 @@
margin-bottom: 24px;
}

.heroBanner::after {
content: "";
position: absolute;
left: 0;
height: 56px;
width: 100%;
background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
transform: matrix(1, 0, 0, -1, 0, 0);
pointer-events: none;
}

html[data-theme='dark'] .heroBanner::after {
background: linear-gradient(180deg, #1A1B21 0%, rgba(26, 27, 33, 0) 100%);
transform: matrix(1, 0, 0, -1, 0, 0);
}

.heroBanner .heroDescription {
color: var(--color-neutral-text-muted);
}
Expand Down

0 comments on commit 1b59fb2

Please sign in to comment.