Skip to content

Commit

Permalink
fix: less blur
Browse files Browse the repository at this point in the history
  • Loading branch information
cirex-web committed Feb 3, 2025
1 parent f9c7d15 commit fb01a63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
5 changes: 2 additions & 3 deletions src/pages/ListPage.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,10 @@
0% {
opacity: 0;
transform: translate(-10px, 0);
filter: url('#horizontal-blur');
filter: blur(3px);
}
75% {
55% {
filter: blur(0);
opacity: 1;
}

100% {
Expand Down
7 changes: 0 additions & 7 deletions src/pages/ListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -295,13 +295,6 @@ function ListPage({
cmu<span style={{ color: '#19b875' }}>:eats</span>
</LogoText>
</footer>
<svg width="1" height="1" style={{ display: 'none' }}>
<defs>
<filter id="horizontal-blur">
<feGaussianBlur in="SourceGraphic" stdDeviation="4 0" />
</filter>
</defs>
</svg>
</div>
);
}
Expand Down

0 comments on commit fb01a63

Please sign in to comment.