remove transition from menu items for snappier feel

This commit is contained in:
tjs 2022-02-09 22:55:57 -05:00
parent 150e59454e
commit e334948b77
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ export default function MarketMenuItem({ menuTitle = '', linksArray = [] }) {
className="cursor-pointer flex flex-col h-10 px-3"
>
<div
className={`default-transition flex items-center h-10 text-th-fgd-3 hover:text-th-primary focus:outline-none ${
className={`flex items-center h-10 text-th-fgd-3 hover:text-th-primary focus:outline-none ${
isSelected ? 'text-th-primary' : ''
}`}
>

View File

@ -39,7 +39,7 @@ const MarketSelect = () => {
<div className="bg-th-bkg-4 flex items-center pl-4 lg:pl-9 pr-1">
{isMobile ? (
<MenuIcon
className="cursor-pointer default-transition h-5 text-th-fgd-1 w-5 hover:text-th-primary"
className="cursor-pointer h-5 text-th-fgd-1 w-5 hover:text-th-primary"
onClick={() => setShowMarketsModal(true)}
/>
) : (

View File

@ -83,7 +83,7 @@ p {
}
a {
@apply text-th-primary transition-all duration-300 hover:text-th-primary-dark;
@apply text-th-primary hover:text-th-primary-dark;
}
button {