Skip to content

Commit

Permalink
ui refactored spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhav18matere committed Jul 22, 2024
1 parent fa3526d commit a3aa877
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Link from "next/link";
export const HeroSection = () => {
return (
<section className="container w-full">
<div className="grid place-items-center lg:max-w-screen-xl gap-8 mx-auto py-32 md:py-32">
<div className="grid place-items-center lg:max-w-screen-xl gap-8 mx-auto py-12 md:py-12">
<div className="text-center space-y-8">
<Badge variant="outline" className="text-sm py-2">
<span className="mr-2 text-primary">
Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/toggle-theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ export const ToggleTheme = () => {
>
<div className="flex gap-2 dark:hidden">
<Moon className="size-5" />
<span className="block lg:hidden"> Dark </span>
<span className="block lg:hidden"> Set Dark Theme</span>
</div>

<div className="dark:flex gap-2 hidden">
<Sun className="size-5" />
<span className="block lg:hidden">Light</span>
<span className="block lg:hidden">Set Light Theme</span>
</div>

<span className="sr-only">Set theme</span>
Expand Down

0 comments on commit a3aa877

Please sign in to comment.