Fix add-to-list overlay bottom corners

This commit is contained in:
2026-06-15 17:48:47 +02:00
parent 9511e98875
commit e26adf4927
@@ -63,6 +63,11 @@
background: var(--surface-delete-confirmation-overlay); background: var(--surface-delete-confirmation-overlay);
} }
.sg-delete-confirmation-pattern__floating-card > .sg-delete-confirmation-pattern__body:has(+ .sg-delete-confirmation-pattern__create-list-segment[hidden]) {
border-bottom-left-radius: var(--radius-card);
border-bottom-right-radius: var(--radius-card);
}
.sg-delete-confirmation-pattern__list { .sg-delete-confirmation-pattern__list {
display: grid; display: grid;
gap: var(--spacing-small); gap: var(--spacing-small);
@@ -126,6 +131,10 @@
display: none; display: none;
} }
.sg-delete-confirmation-pattern__create-list-segment[hidden] {
display: none;
}
.sg-delete-confirmation-pattern__text { .sg-delete-confirmation-pattern__text {
margin: 0; margin: 0;
color: var(--text-delete-confirmation-overlay); color: var(--text-delete-confirmation-overlay);