Dark mode refactor #98

Merged
rishighan merged 32 commits from dark-mode-refactor into main 2023-12-21 21:23:29 +00:00
2 changed files with 9 additions and 10 deletions
Showing only changes of commit 4215470871 - Show all commits

View File

@@ -66,10 +66,15 @@ export const Navbar2 = (): ReactElement => {
<ul className="flex items-center gap-6 text-md"> <ul className="flex items-center gap-6 text-md">
<li> <li>
<a <a
className="text-gray-500 transition hover:text-gray-500/75 dark:text-white dark:hover:text-white/75" href="#"
href="/" className="flex items-center space-x-1 text-gray-500 transition hover:text-gray-500/75 dark:text-white dark:hover:text-white/75"
> >
Settings <span>
<span>
<i className="icon-[solar--settings-outline] h-5 w-5"></i>
</span>
</span>
<span>Settings</span>
</a> </a>
</li> </li>
</ul> </ul>

View File

@@ -19,11 +19,5 @@ module.exports = {
}, },
}, },
}, },
plugins: [ plugins: [addDynamicIconSelectors()],
{
tailwindcss: {},
autoprefixer: {},
addDynamicIconSelectors: addDynamicIconSelectors(),
},
],
}; };