Skip to content

Commit

Permalink
fix: firefox performance issue
Browse files Browse the repository at this point in the history
  • Loading branch information
6eDesign committed Sep 20, 2021
1 parent b59d1be commit 8d4e037
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/lib/components/generic/InfiniteGrid.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,16 @@

<style>
.grid {
overflow: hidden;
height: 100%;
display: grid;
}
.grid > * {
grid-row: 1;
grid-column: 1;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
transition-property: none !important;
}
</style>

0 comments on commit 8d4e037

Please sign in to comment.