We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf2ae76 commit 253d40dCopy full SHA for 253d40d
packages/nextjs/components/SwitchTheme.tsx
@@ -23,7 +23,7 @@ export const SwitchTheme = ({ className }: { className?: string }) => {
23
return (
24
<div
25
onClick={handleToggle}
26
- className={`flex cursor-pointer space-x-2 h-8 items-center hover:bg-[#C9D8E5] dark:hover:bg-[#193048] justify-start w-full rounded-lg pl-3 text-sm ${className}`}
+ className={`flex cursor-pointer space-x-2 h-8 items-center hover:bg-[#C9D8E5] dark:hover:bg-[#193048] justify-start w-full rounded-lg pl-5 lg:pl-3 text-sm ${className}`}
27
>
28
<button className="swap swap-rotate flex flex-row gap-2 justify-start items-center">
29
{isDarkMode ? <MoonIcon className="h-5 w-5" /> : <SunIcon className="h-5 w-5" />}
0 commit comments