ran prettier with new config on components directory

This commit is contained in:
Benjamin Lesne
2023-10-18 14:50:19 +02:00
parent 3c7e2c5c53
commit c9ae2edb93
4 changed files with 6 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ const MobileNav = () => {
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
className="text-gray-900 dark:text-gray-100 h-8 w-8"
className="h-8 w-8 text-gray-900 dark:text-gray-100"
>
<path
fillRule="evenodd"
@@ -36,7 +36,7 @@ const MobileNav = () => {
</svg>
</button>
<div
className={`fixed left-0 top-0 z-10 h-full w-full transform opacity-95 dark:opacity-[0.98] bg-white duration-300 ease-in-out dark:bg-gray-950 ${
className={`fixed left-0 top-0 z-10 h-full w-full transform bg-white opacity-95 duration-300 ease-in-out dark:bg-gray-950 dark:opacity-[0.98] ${
navShow ? 'translate-x-0' : 'translate-x-full'
}`}
>