diff --git a/app/components/ActionsBar/index.tsx b/app/components/ActionsBar/index.tsx index 608fc379b..4aca4fe57 100644 --- a/app/components/ActionsBar/index.tsx +++ b/app/components/ActionsBar/index.tsx @@ -103,7 +103,9 @@ export default function ActionsBar(props: ActionsBarProps) { selected === action.id ? `!bg-actions-bar-btn-default ${action.activeClassName}` : "bg-transparent" - } rounded-md items-center ${action.className}`} + } rounded-md items-center ${ + action.className + } transition duration-300 ease-in-out`} onClick={handlerClick(action)} > {selected === action.id ? activeIcon : inactiveIcon} diff --git a/app/components/Input/index.tsx b/app/components/Input/index.tsx index 04f86a826..9e28e886a 100644 --- a/app/components/Input/index.tsx +++ b/app/components/Input/index.tsx @@ -57,7 +57,7 @@ export default function Input(props: CommonInputProps & InputProps) { return (