mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
33cc8d587a
* replaced all the instances of collectibles with nfts * updated actions * updated e2e seeder * updated confirm Approve test * updated test dapp change * updated test dapp change * nit fix * nit fix * updated casing and snapshots * updated casinG * added migrations * updated ,igration * updated 078.test * updated tests for 078 migration * updated migration * updated 078 index.js
56 lines
876 B
SCSS
56 lines
876 B
SCSS
.nfts-items {
|
|
&__collection {
|
|
margin-bottom: 24px;
|
|
|
|
&-accordion-title {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&-wrapper {
|
|
background-color: transparent;
|
|
border: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
&-image {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
&-image-alt {
|
|
border-radius: 50%;
|
|
width: 32px;
|
|
height: 32px;
|
|
padding: 8px;
|
|
background: var(--color-overlay-alternative);
|
|
color: var(--color-overlay-inverse);
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
&__item-wrapper {
|
|
align-self: center;
|
|
|
|
&__card {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
&__item {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
align-self: center;
|
|
padding: 0;
|
|
|
|
&-image {
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|