Fix browser specific styling on some elements (#1637)
Co-authored-by: Alex van Andel <me@alexvanandel.com>
This commit is contained in:
parent
f2095fb594
commit
2079199bab
2 changed files with 2 additions and 2 deletions
|
@ -370,7 +370,7 @@ function UserDropdown({ small }: { small?: boolean }) {
|
|||
return (
|
||||
<Dropdown>
|
||||
<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
|
||||
className={classNames(
|
||||
small ? "w-8 h-8" : "w-10 h-10",
|
||||
|
|
|
@ -157,7 +157,7 @@ const EventTypeList = ({ readOnly, types, profile }: EventTypeListProps): JSX.El
|
|||
href={`${process.env.NEXT_PUBLIC_APP_URL}/${profile.slug}/${type.slug}`}
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="btn-icon">
|
||||
className="btn-icon appearance-none">
|
||||
<ExternalLinkIcon className="w-5 h-5 group-hover:text-black" />
|
||||
</a>
|
||||
</Tooltip>
|
||||
|
|
Loading…
Reference in a new issue