refactor: Remove collapsible animation styles from CSS
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user