refactor: add correct padding to Settings

This commit is contained in:
Thomas Bishop 2025-08-06 18:48:08 +01:00
parent 561a2d24b3
commit 8461c8c129
2 changed files with 1 additions and 1 deletions

View file

@ -1,7 +1,7 @@
import ThemeToggle from "@/components/ThemeToggle" import ThemeToggle from "@/components/ThemeToggle"
export default function Settings() { export default function Settings() {
return ( return (
<div> <div className="p-4 lg:p-6">
<ThemeToggle /> <ThemeToggle />
</div> </div>
) )