From ffd4b729e48d63fc4ace5e71cfcfc2aaebecedf1 Mon Sep 17 00:00:00 2001 From: Serkan Reis Date: Tue, 4 Apr 2023 10:45:13 +0300 Subject: [PATCH] Increased resolution responsiveness for My Collections --- pages/collections/myCollections.tsx | 32 ++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/pages/collections/myCollections.tsx b/pages/collections/myCollections.tsx index 7211d7d..46dc5da 100644 --- a/pages/collections/myCollections.tsx +++ b/pages/collections/myCollections.tsx @@ -85,7 +85,9 @@ const CollectionList: NextPage = () => {
{myStandardCollections.length > 0 && (
- Standard Collections + + Standard Collections + @@ -98,7 +100,7 @@ const CollectionList: NextPage = () => { {myStandardCollections.map((collection: any, index: any) => { return ( - -
+
@@ -115,12 +117,16 @@ const CollectionList: NextPage = () => {
-

{collection.name}

-

{collection.description}

+

+ {collection.name} +

+

+ {collection.description} +

+
Minter: @@ -188,7 +194,9 @@ const CollectionList: NextPage = () => { )} {myOneOfOneCollections.length > 0 && (
- 1/1 Collections + + 1/1 Collections + @@ -201,7 +209,7 @@ const CollectionList: NextPage = () => { {myOneOfOneCollections.map((collection: any, index: any) => { return ( - -
+
@@ -218,12 +226,16 @@ const CollectionList: NextPage = () => {
-

{collection.name}

-

{collection.description}

+

+ {collection.name} +

+

+ {collection.description} +

+
Minter: