IconGrid: potentially stupid-big loadtime gains

By adding 'content-visibility: auto;' we were able to see an 8x
improvement on rendering time and a 25x improvement on paint times for
first load. We may need to do some work to bring similar gains to
non-Chrome useragents.
This commit is contained in:
rektdeckard
2020-11-05 16:47:13 -05:00
parent 20b077a05f
commit d0c4891480

View File

@@ -1,6 +1,7 @@
.grid-container { .grid-container {
padding: 32px 16px; padding: 32px 16px;
min-height: 80vh; min-height: 80vh;
content-visibility: auto;
} }
.grid { .grid {