-
Notifications
You must be signed in to change notification settings - Fork 684
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: item detail information (#1487)
* feat: created owners table with corresponding styles * feat: added connection with nft server * feat: added sort by * feat: some fixes * feat: removed unused container * fix: pr comments * fix: imports * fix: pr commentsg * fix: removed change con dev.json * fix: pr comments * fix: changed component name * feat: create listings table component * feat: listings table with mocked data * fix: dates and sytles * feat: connected with api * feat: added empty state to tables - missing listings empty state * feat: added empty state text * fix: added name as possible filter to support marketplace subraph * fix: test * feat: updated dcl shcemas * feat: created mint or buy component * fix: pr comments * feat: item detail page * fix: some styles * Feat/latest sales table (#1488) * feat: redesign lastest sales table * fix: table title * fix: removed unused file * fix: pr comments * fix: typo
- Loading branch information
1 parent
e5f3b81
commit 591c809
Showing
8 changed files
with
192 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
webapp/src/components/AssetPage/ItemDetail/ItemDetail.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
.ItemDetail { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.ItemDetail .assetImageContainer :global(.AssetImage) { | ||
border-radius: 12px; | ||
overflow: hidden; | ||
} | ||
|
||
.ItemDetail .assetImageContainer { | ||
width: 48%; | ||
} | ||
|
||
.ItemDetail .badges { | ||
margin-top: 15px; | ||
display: flex; | ||
gap: 8px; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.ItemDetail .information { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
width: 48%; | ||
gap: 30px; | ||
} | ||
|
||
.ItemDetail .informationContainer { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
gap: 30px; | ||
} | ||
|
||
.ItemDetail .basicRow { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
width: 100%; | ||
} | ||
|
||
.ItemDetail :global(.ui.button + .ui.button) { | ||
margin-left: 0px; | ||
} | ||
|
||
@media (max-width: 800px) { | ||
.ItemDetail .information { | ||
width: 100%; | ||
} | ||
.ItemDetail .assetImageContainer { | ||
width: 100%; | ||
} | ||
.ItemDetail .basicRow { | ||
flex-direction: column; | ||
} | ||
|
||
.ItemDetail :global(.dcl.stats + .dcl.stats) { | ||
width: 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.