fix(app): fade under sticky elements

This commit is contained in:
Adam
2026-01-19 14:46:32 -06:00
parent a4d1824412
commit 3173ba1288

View File

@@ -75,6 +75,17 @@
background-color: var(--background-stronger);
z-index: -1;
}
&::after {
content: "";
position: absolute;
top: 100%;
left: 0;
right: 0;
height: 32px;
background: linear-gradient(to bottom, var(--background-stronger), transparent);
pointer-events: none;
}
}
[data-slot="session-turn-response-trigger"] {