fix: remove px and change min width in suffix (#5584)

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
pull/5535/head
Udit Takkar 2022-11-22 00:50:33 +05:30 committed by GitHub
parent 50cd1fbd83
commit c4662d79e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ export const EventAdvancedTab = ({ eventType, team }: Pick<EventTypeSetupInfered
StartIcon={Icon.FiEdit}
size="icon"
color="minimal"
className="hover:stroke-3 hover:bg-transparent hover:text-black"
className="hover:stroke-3 min-w-fit px-0 hover:bg-transparent hover:text-black"
onClick={() => setShowEventNameTip((old) => !old)}
/>
}

View File

@ -67,7 +67,7 @@ const Addon = ({ isFilled, children, className, error }: AddonProps) => (
isFilled && "bg-gray-100",
className
)}>
<div className={classNames("flex h-full flex-col justify-center px-1 text-sm", error && "text-red-900")}>
<div className={classNames("flex h-full flex-col justify-center text-sm", error && "text-red-900")}>
<span className="whitespace-nowrap py-2.5">{children}</span>
</div>
</div>