UI: Fix extra gaps on the right sidebar

This commit is contained in:
oobabooga 2025-05-31 21:29:25 -07:00
parent f8d220c1e6
commit 85f2f01a3a

View file

@ -1555,3 +1555,8 @@ strong {
button:focus { button:focus {
outline: none; outline: none;
} }
/* Fix extra gaps for hidden elements on the right sidebar */
.svelte-sa48pu.stretch:has(> .hidden:only-child) {
display: none;
}