Add local virtualization wrapper to message stream

This commit is contained in:
Shantur Rathore
2025-12-02 11:13:12 +00:00
parent 52ee196103
commit a2d8ea0dfd
3 changed files with 232 additions and 17 deletions

View File

@@ -112,3 +112,27 @@
font-size: var(--font-size-lg);
color: var(--accent-primary);
}
.virtual-item-wrapper {
width: 100%;
}
.virtual-item-placeholder,
.message-stream-placeholder {
display: block;
width: 100%;
position: relative;
background-color: transparent;
}
.virtual-item-content {
width: 100%;
position: relative;
}
.virtual-item-content-hidden {
position: absolute;
inset: 0;
visibility: hidden;
pointer-events: none;
}