More updates

This commit is contained in:
Bel Curcio 2021-06-04 17:43:27 -03:00
parent 60c9fbca00
commit f557274f62
3 changed files with 9 additions and 11 deletions

View File

@ -3,11 +3,11 @@
} }
.button { .button {
@apply h-10 px-2 rounded-md border border-accent-2 flex items-center justify-center; @apply h-10 px-2 rounded-md border border-accent-2 flex items-center justify-center transition-colors ease-linear;
} }
.button:hover { .button:hover {
@apply border-accent-4 shadow-sm; @apply border-accent-3 shadow-sm;
} }
.button:focus { .button:focus {
@ -38,5 +38,9 @@
} }
.icon { .icon {
transition: transform 0.2s ease;
}
.icon.active {
transform: rotate(180deg); transform: rotate(180deg);
} }

View File

@ -59,7 +59,7 @@ const I18nWidget: FC = () => {
/> />
{options && ( {options && (
<span className="cursor-pointer"> <span className="cursor-pointer">
<ChevronUp className={cn({ [s.icon]: display })} /> <ChevronUp className={cn(s.icon, { [s.active]: display })} />
</span> </span>
)} )}
</button> </button>

View File

@ -53,14 +53,8 @@ export default function Home({
))} ))}
</Marquee> </Marquee>
<Hero <Hero
headline="Release Details: The Yeezy BOOST 350 V2 Natural'" headline=" Dessert dragée halvah croissant."
description=" description="Cupcake ipsum dolor sit amet lemon drops pastry cotton candy. Sweet carrot cake macaroon bonbon croissant fruitcake jujubes macaroon oat cake. Soufflé bonbon caramels jelly beans. Tiramisu sweet roll cheesecake pie carrot cake. "
The Yeezy BOOST 350 V2 lineup continues to grow. We recently had the
Carbon iteration, and now release details have been locked in for
this Natural joint. Revealed by Yeezy Mafia earlier this year, the
shoe was originally called Abez, which translated to Tin in
Hebrew. Its now undergone a name change, and will be referred to as
Natural."
/> />
<Grid layout="B" variant="filled"> <Grid layout="B" variant="filled">
{products.slice(0, 3).map((product, i) => ( {products.slice(0, 3).map((product, i) => (