refactor: Remove collapsible animation styles from CSS

This commit is contained in:
Marco Beretta
2025-12-02 18:48:14 +01:00
parent b2e6ca0daa
commit 769374d14a

View File

@@ -2836,36 +2836,3 @@ html {
.sharepoint-picker-bg{
background-color: #F5F5F5;
}
/* Collapsible Animation */
.collapsible-content {
overflow: hidden;
}
.collapsible-content[data-state='open'] {
animation: slideDown 300ms ease-out;
}
.collapsible-content[data-state='closed'] {
animation: slideUp 300ms ease-out;
}
@keyframes slideDown {
from {
height: 0;
opacity: 0;
}
to {
height: var(--radix-collapsible-content-height);
opacity: 1;
}
}
@keyframes slideUp {
from {
height: var(--radix-collapsible-content-height);
opacity: 1;
}
to {
height: 0;
opacity: 0;
}
}