-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(client): rewrote the feed entirely to avoid causing a memory hog …
…on instances with many videos
- Loading branch information
Will Moss
committed
Jul 30, 2024
1 parent
7e3e7d3
commit a2c9cb2
Showing
5 changed files
with
251 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.feed-pad-top { | ||
width: 100%; | ||
} | ||
.feed { | ||
width: 100%; | ||
height: 100%; | ||
position: relative; | ||
overflow: scroll; | ||
scroll-snap-type: y mandatory; | ||
-ms-overflow-style: none; | ||
scrollbar-width: none; | ||
} | ||
.feed::-webkit-scrollbar { | ||
display: none; | ||
} |
Oops, something went wrong.