Skip to content

Commit

Permalink
fix hover homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
filipc30 committed Dec 22, 2023
1 parent 34bf1b0 commit d458bf0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/routes/_base+/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export default function Index() {
<LogoPhil className="max-md:max-h-[24px]" />

<Link to="about/phil" className="w-full">
<Button className="w-full text-md capitalize" variant="default">
<Button className="w-full p-2 text-md capitalize" variant="default">
{discoverText}
</Button>
</Link>
Expand All @@ -199,7 +199,7 @@ export default function Index() {
<LogoWochlife className="max-md:max-h-[20px]" />

<Link to="about/wochlife" className="w-full">
<Button className="w-full capitalize" variant="default">
<Button className="w-full p-2 capitalize" variant="default">
{discoverText}
</Button>
</Link>
Expand Down Expand Up @@ -316,7 +316,7 @@ function ProjectsContentBox({
<div className={cn(purpleBoxInnerContentBox, 'group')}>
<div className={cn(boxInnerContentBoxInnerBox, innerBoxClass,
'text-highlight group-hover:text-foreground',
'flex items-center justify-center transition-colors md:group-hover:bg-light-blue-radial-gradient',
'flex items-center justify-center transition-colors group-hover:bg-light-blue-radial-gradient',
)}>
{!iconName && !!imgSrc && imgSrc.length && (
<img src={imgSrc} alt="" />
Expand Down

0 comments on commit d458bf0

Please sign in to comment.