Skip to content
Snippets Groups Projects
Commit 2dd91a53 authored by Lukas's avatar Lukas
Browse files

Fix account filter sections bug

parent 4bff3361
No related branches found
No related tags found
1 merge request!592Fix account filter sections bug
Pipeline #118190 canceled
......@@ -89,7 +89,7 @@ const CommentsTabContent: React.FC<CommnetsTabContentProps> = ({
className={cn(
"mb-4 overflow-hidden transition-all duration-500 ease-in max-h-0 opacity-0",
{
"max-h-96 opacity-100": isVisible,
"max-h-full opacity-100": isVisible,
}
)}
>
......
......@@ -80,7 +80,7 @@ const InteractionsTabContent: React.FC<InteractionsTabContentProps> = ({
className={cn(
"mb-4 overflow-hidden transition-all duration-500 ease-in max-h-0 opacity-0",
{
"max-h-96 opacity-100": isVisible,
"max-h-full opacity-100": isVisible,
}
)}
>
......
......@@ -167,7 +167,7 @@ const OperationTabContent: React.FC<OpeationTabContentProps> = ({
className={cn(
"mb-4 overflow-hidden transition-all duration-500 ease-in max-h-0 opacity-0",
{
"max-h-96 opacity-100": isVisible,
"max-h-full opacity-100": isVisible,
}
)}
>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment