Fix browser specific styling on some elements (#1637)

Co-authored-by: Alex van Andel <me@alexvanandel.com>
This commit is contained in:
Xavier B 2022-01-29 13:32:41 -05:00 committed by GitHub
parent f2095fb594
commit 2079199bab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -370,7 +370,7 @@ function UserDropdown({ small }: { small?: boolean }) {
return ( return (
<Dropdown> <Dropdown>
<DropdownMenuTrigger asChild> <DropdownMenuTrigger asChild>
<div className="flex items-center w-full space-x-2 cursor-pointer group"> <div className="flex items-center w-full space-x-2 cursor-pointer group appearance-none">
<span <span
className={classNames( className={classNames(
small ? "w-8 h-8" : "w-10 h-10", small ? "w-8 h-8" : "w-10 h-10",

View file

@ -157,7 +157,7 @@ const EventTypeList = ({ readOnly, types, profile }: EventTypeListProps): JSX.El
href={`${process.env.NEXT_PUBLIC_APP_URL}/${profile.slug}/${type.slug}`} href={`${process.env.NEXT_PUBLIC_APP_URL}/${profile.slug}/${type.slug}`}
target="_blank" target="_blank"
rel="noreferrer" rel="noreferrer"
className="btn-icon"> className="btn-icon appearance-none">
<ExternalLinkIcon className="w-5 h-5 group-hover:text-black" /> <ExternalLinkIcon className="w-5 h-5 group-hover:text-black" />
</a> </a>
</Tooltip> </Tooltip>