diff --git a/client/src/style.css b/client/src/style.css index 78e32abb0..2a4550f43 100644 --- a/client/src/style.css +++ b/client/src/style.css @@ -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; - } -}