remove transition from menu items for snappier feel
This commit is contained in:
parent
150e59454e
commit
e334948b77
|
@ -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' : ''
|
||||
}`}
|
||||
>
|
||||
|
|
|
@ -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)}
|
||||
/>
|
||||
) : (
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue