fix(style): model status

This commit is contained in:
jialin
2024-07-08 19:47:47 +08:00
parent 9ad9539b51
commit 734368dd49
25 changed files with 109 additions and 83 deletions
-1
View File
@@ -16,7 +16,6 @@
.transition-content-wrapper {
background-color: var(--color-fill-1);
padding: 8px;
}
}
+2 -1
View File
@@ -73,7 +73,8 @@ const TransitionWrapper: React.FC<TransitionWrapProps> = forwardRef(
className="transition-content-wrapper"
style={{
minHeight: isOpen ? height : 0,
height: isOpen ? 'auto' : 0
height: isOpen ? 'auto' : 0,
padding: isOpen ? '8px' : '0 8px'
}}
ref={contentRef}
>