refactor: format code

This commit is contained in:
unknown 2021-08-25 11:52:42 +07:00
parent f9391f3d0c
commit c0c4aa9c10
2 changed files with 3 additions and 3 deletions

View File

@ -11,8 +11,8 @@ interface Props {
const ItemWishList = memo(({isActive, onChange}:Props) => { const ItemWishList = memo(({isActive, onChange}:Props) => {
return( return(
<div className={classNames({ <div className={classNames({
[s.heartToggle]:true, [s.heartToggle]: true,
[s.isToggleOn]:isActive [s.isToggleOn]: isActive
})} })}
onChange={onChange} onChange={onChange}
> >

View File

@ -11,6 +11,6 @@
} }
.conTent{ .conTent{
@apply font-logo sub-headline; @apply font-logo sub-headline;
font-size: 1.6rem; font-size: var(--font-size);
} }
} }