mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
4f8c4820d2
* adding badges for nfts * fixing default nft styling issue * adding multichain flag, making borderRadius inline * Apply suggestions from code review Co-authored-by: George Marshall <george.marshall@consensys.net> * fixing imports * removing nullcheck for guaranteed fields * moving badgewrapper UI into multichain component * using Box for button, removing inline style, border-radius for NFT default image * adding nft badges to NFT Details page * nits, snap update * fixing/refactoring nftdefaultimage display, adding clickable, removing handleimageclick, refactor NFTItem, required props * editing nft-default-image story, test, and snap * Updating to fix positioning, use Box props to reduce CSS and BEM naming conventions * moving minor styling to Box props, adding comment * display block typo --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
122 lines
2.3 KiB
SCSS
122 lines
2.3 KiB
SCSS
$card-width-break-large: 224px;
|
|
$link-title-width: 160px;
|
|
$spacer-break-large: 24px;
|
|
$spacer-break-small: 16px;
|
|
|
|
.nft-details {
|
|
padding: 0 $spacer-break-small;
|
|
|
|
@include screen-sm-min {
|
|
padding: 0 $spacer-break-large;
|
|
}
|
|
|
|
&__tooltip-wrapper {
|
|
width: 100%;
|
|
}
|
|
|
|
&__top-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: $spacer-break-small;
|
|
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
|
padding: $spacer-break-large;
|
|
|
|
@include screen-sm-min {
|
|
margin-bottom: $spacer-break-large;
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
&__info {
|
|
@include screen-sm-min {
|
|
max-width:
|
|
calc(
|
|
100% - #{$card-width-break-large} - #{$spacer-break-large}
|
|
);
|
|
flex: 0 0 calc(100% - #{$card-width-break-large} - #{$spacer-break-large});
|
|
}
|
|
}
|
|
|
|
&__card {
|
|
overflow: hidden;
|
|
margin-bottom: $spacer-break-small;
|
|
|
|
@include screen-sm-min {
|
|
margin-right: $spacer-break-large;
|
|
margin-bottom: 0;
|
|
max-width: $card-width-break-large;
|
|
flex: 0 0 $card-width-break-large;
|
|
height: $card-width-break-large;
|
|
}
|
|
}
|
|
|
|
&__nft-item {
|
|
margin-bottom: $spacer-break-small;
|
|
|
|
@include screen-sm-min {
|
|
margin-right: $spacer-break-large;
|
|
margin-bottom: 0;
|
|
max-width: $card-width-break-large;
|
|
flex: 0 0 $card-width-break-large;
|
|
height: $card-width-break-large;
|
|
}
|
|
}
|
|
|
|
&__image {
|
|
width: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
&__address {
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
&__contract-wrapper {
|
|
max-width: calc(100% - #{$link-title-width});
|
|
}
|
|
|
|
&__contract-copy-button {
|
|
@include H6;
|
|
|
|
width: 80px;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
background-color: transparent;
|
|
cursor: pointer;
|
|
color: var(--color-text-alternative);
|
|
border: 0;
|
|
margin-top: -4px;
|
|
|
|
&:active {
|
|
transform: scale(0.97);
|
|
}
|
|
}
|
|
|
|
&__contract-link {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&__image-source {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 332px;
|
|
}
|
|
|
|
&__link-title {
|
|
flex: 0 0 $link-title-width;
|
|
max-width: 0 0 $link-title-width;
|
|
}
|
|
|
|
&__send-button {
|
|
margin-inline-end: 8px;
|
|
|
|
@include screen-sm-min {
|
|
max-width: 160px;
|
|
}
|
|
}
|
|
}
|