Skip to content

Commit

Permalink
fix: black footer
Browse files Browse the repository at this point in the history
  • Loading branch information
SureshPradhana committed Jul 22, 2024
1 parent 8f992f4 commit 84ef4f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/customizer/box-shadow-generator/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Page = () => {
const handleCopyTailwindClick = () => {
navigator.clipboard
.writeText(
`shadow-[${shadow.inset ? "inset_" : ""}${shadow.hOffset}px_${shadow.vOffset}px_${shadow.blur}px_${shadow.spread}px_${shadow.color}]`
`shadow-[${shadow.inset ? "inset_" : ""}${shadow.hOffset}px_${shadow.vOffset}px_${shadow.blur}px_${shadow.spread}px_${shadow.color}]`

)
.then(() => {
Expand All @@ -66,7 +66,7 @@ const Page = () => {
isDarkMode={isDarkMode}
toggleTheme={toggleTheme}
/>
<main className=" max-w-6xl m-auto min-w-80">
<main className=" h-[100vh] max-w-6xl m-auto min-w-80">
<div className="flex flex-col gap-3 mt-10 items-center">
<h1 className="text-5xl font-extrabold text-center">
Box Shadow Generator
Expand Down

0 comments on commit 84ef4f7

Please sign in to comment.