Skip to content

Commit

Permalink
fix(block-item): add hover color through group hover on speaker name (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
feliciofilipe authored Jan 15, 2024
1 parent 099b1d4 commit f8f1da6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Schedule/Table/Block/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function BlockItem({
</p>

<ul
className={`${styles.authors} flex font-iregular text-sm text-gray-400`}
className={`${styles.authors} flex font-iregular text-sm text-gray-400 group-hover:text-primary`}
>
{author && (
<li className={styles.listElem}>
Expand Down Expand Up @@ -109,7 +109,7 @@ function BlockItem({
);

return (
<div className={skipLink ? "" : styles.clickable}>
<div className={`group ${skipLink ? "" : styles.clickable}`}>
{!skipLink && (
<Link href={`schedule/#${id}`} className="absolute h-full w-full" />
)}
Expand Down

0 comments on commit f8f1da6

Please sign in to comment.