1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

chore: usage of eslint-plugin-tailwindcss

This commit is contained in:
2024-01-28 03:21:11 +01:00
parent b8ceefb2f6
commit f5020cad19
30 changed files with 320 additions and 352 deletions

View File

@ -10,9 +10,9 @@ export const InterestItem = (props: InterestItemProps): JSX.Element => {
const { fontAwesomeIcon, title } = props
return (
<li className="interest-item mx-2 my-2 h-8 w-8" title={title}>
<li className="m-2 size-8" title={title}>
<FontAwesomeIcon
className="block h-full w-full text-yellow dark:text-yellow-dark"
className="block size-full text-yellow dark:text-yellow-dark"
icon={fontAwesomeIcon}
/>
</li>