Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix/remove-blur-from-form-material #1807

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/lucky-roses-sip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@skeletonlabs/skeleton": patch
---

bugfix: Removed `backdrop-blur` from `variant-form-material` because of high CPU usage on some browsers.
4 changes: 2 additions & 2 deletions packages/skeleton/src/lib/styles/elements/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@
@apply bg-surface-500/10 dark:bg-surface-500/20;
/* Border */
@apply border-0 border-b-2;
/* Blur */
@apply backdrop-blur;
/* Blur / high CPU usage on some browsers, see https://github.com/skeletonlabs/skeleton/issues/1805 */
/* @apply backdrop-blur; */
}
.variant-form-material[type='file'] {
@apply !py-1.5;
Expand Down