-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π§π¨ β Fixed build errors & default export in build for #26
- Loading branch information
1 parent
ab6b6db
commit 0ed59d1
Showing
8 changed files
with
198 additions
and
13 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
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
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,180 @@ | ||
.container { | ||
margin-top: 96px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
width: 100%; | ||
position: absolute; | ||
padding: 0 24px; | ||
} | ||
|
||
.h1 { | ||
margin-bottom: 0px; | ||
} | ||
|
||
.explain { | ||
font-size: 1.125rem; | ||
max-width: 1200px; | ||
} | ||
|
||
.divider { | ||
width: 50%; | ||
border-color: grey; | ||
opacity: 0.25; | ||
} | ||
|
||
.smallDivider { | ||
width: 25%; | ||
border-color: grey; | ||
margin-top: 64px; | ||
opacity: 0.25; | ||
} | ||
|
||
.nftBoxGrid { | ||
width: 1200px; | ||
max-width: 95vw; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 2%; | ||
margin-top: 28px; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.nftBox { | ||
border-radius: 16px; | ||
border: 1px solid #ccc; | ||
width: 19%; | ||
min-height: 200px; | ||
padding: 16px; | ||
} | ||
|
||
.optionSelectBox { | ||
border-radius: 16px; | ||
border: 1px solid #ccc; | ||
width: 48%; | ||
min-height: 200px; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
padding-left: 12px; | ||
padding-right: 12px; | ||
cursor: pointer; | ||
} | ||
|
||
.selectBoxTitle { | ||
font-size: 1.75rem; | ||
margin-top: 8px; | ||
margin-bottom: 8px; | ||
} | ||
|
||
.selectBoxDescription { | ||
color: rgba(255, 255, 255, 0.9); | ||
margin-top: 0px; | ||
} | ||
|
||
/* Between 1200 and 800 */ | ||
@media only screen and (min-width: 800px) and (max-width: 1200px) { | ||
.nftBox { | ||
width: 49%; | ||
margin-top: 16px; | ||
} | ||
} | ||
|
||
/* beneath 800 | ||
*/ | ||
@media only screen and (max-width: 800px) { | ||
.nftBoxGrid { | ||
justify-content: center; | ||
} | ||
.nftBox { | ||
width: 90%; | ||
margin-top: 16px; | ||
} | ||
.optionSelectBox { | ||
width: 90%; | ||
margin-top: 16px; | ||
} | ||
} | ||
|
||
.tokenGrid { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 1%; | ||
width: 1600px; | ||
max-width: 95vw; | ||
flex-wrap: wrap; | ||
margin: 16px 0; | ||
} | ||
|
||
.tokenItem { | ||
width: 35%; | ||
height: 120px; | ||
border-radius: 16px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
border: 1px solid rgba(255, 255, 255, 0.4); | ||
gap: 16px; | ||
} | ||
|
||
.tokenLabel { | ||
margin-top: 0px; | ||
margin-bottom: 0px; | ||
font-weight: 600; | ||
color: rgba(255, 255, 255, 0.7); | ||
} | ||
|
||
/* Second tokenLabel item */ | ||
|
||
.tokenValue { | ||
font-size: 1.3rem; | ||
margin-top: 8px; | ||
margin-bottom: 0px; | ||
font-weight: 500; | ||
} | ||
|
||
/* On Mobile, make tokenGrid 100% width */ | ||
@media only screen and (max-width: 850px) { | ||
.tokenItem { | ||
width: 90%; | ||
margin-top: 12px; | ||
} | ||
} | ||
|
||
/* Screen less than 630, then hide .center */ | ||
@media only screen and (max-width: 630px) { | ||
.center { | ||
display: none; | ||
} | ||
} | ||
|
||
.spacerTop { | ||
margin-top: 16px; | ||
} | ||
|
||
.bigSpacerTop { | ||
margin-top: 32px; | ||
} | ||
|
||
.spacerBottom { | ||
margin-bottom: 16px; | ||
} | ||
|
||
.detailPageHr { | ||
margin-top: 0px; | ||
margin-bottom: 32px; | ||
} | ||
|
||
.nftMedia { | ||
width: 100%; | ||
max-height: 300px; | ||
border-radius: 15px; | ||
} |
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