You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf: Optimize typing performance in prompt field and overall UI (#108)
- Fix laggy typing experience in prompt field for longer chats by replacing CSS `:has()` usage
- Improve performance related to GPThems Customization tabs and theme rendering
Changes summary:
Resolved laggy typing in the prompt field for longer chats and enhanced overall performance for GPThems Customization tabs and theme interactions.
/* TODO This element causes weird empty space before prompt field which makes prompt fields visually unshifted or misaligned. The best would be to display:none, but idk if that would be filled with some important content in the future. So I use :empty to remove it only when this element is without any content. */
20
-
& > div.flex.justify-center:has(~form):empty {
21
-
// border: 4px solid orange !important;
22
-
display: none!important;
23
-
}
21
+
/* TODO This element causes weird empty space before prompt field which makes prompt fields visually unshifted or misaligned. The best would be to display:none, but idk if that would be filled with some important content in the future. So I use :empty to remove it only when this element is without any content. */
0 commit comments