Imports are now 4-5x faster and queries are still just about as fast. New indexes should only be created after proving their usefulness.
14 lines
263 B
CSS
14 lines
263 B
CSS
.timeline-container-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.timeline-container-grid > * {
|
|
max-height: 450px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.timeline-container-grid .minidisp-media > * {
|
|
max-height: 200px;
|
|
}
|