Skip to content

Commit

Permalink
Update sidebar padding
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrugu committed Jul 9, 2024
1 parent 571d015 commit d3654c2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/Create/components/Creator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export default function Creator() {
</div>
</div>

<div className="p-8 lg:w-5/12 bg-black/[.035] dark:bg-gray-700/10 rounded-lg">
<div className="p-10 lg:w-5/12 bg-black/[.035] dark:bg-gray-700/10 rounded-lg">
<div className="text-2xl text-gray-700 dark:text-gray-300">Create GovNFT</div>

<div className="space-y-8">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Delegate/components/DelegateNft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function DelegateNft({ nft }: { nft: GovNft }) {
</div>
</div>
</div>
<div className="lg:w-5/12 bg-black/[.035] dark:bg-gray-700/10 p-2 md:px-10 md:py-8 rounded-lg">
<div className="lg:w-5/12 bg-black/[.035] dark:bg-gray-700/10 p-2 md:p-10 rounded-lg">
<div className="flex flex-col items-center justify-center h-full space-y-6 py-8">
{!isAddress(toAddress) && (
<>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Split/components/Splitter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default function Splitter({ nft }: { nft: GovNft }) {
</div>
</div>

<div className="p-8 lg:w-5/12 bg-black/[.035] dark:bg-gray-700/10 rounded-lg">
<div className="p-10 lg:w-5/12 bg-black/[.035] dark:bg-gray-700/10 rounded-lg">
<div className="text-xl text-gray-700 dark:text-gray-300">Splitting</div>

<div className="space-y-8">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Transfer/components/TransferNft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function TransferNft({ nft }: { nft: GovNft }) {
<TextInput placeholder="0x" value={toAddress} onChange={(e) => setToAddress(e.target.value)} />
</div>
</div>
<div className="lg:w-5/12 bg-black/[.035] dark:bg-gray-700/10 p-2 md:px-10 md:py-8 rounded-lg">
<div className="lg:w-5/12 bg-black/[.035] dark:bg-gray-700/10 p-2 md:p-10 rounded-lg">
<div className="flex flex-col items-center justify-center h-full space-y-6 py-8">
{!isAddress(toAddress) && (
<>
Expand Down

0 comments on commit d3654c2

Please sign in to comment.