mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
1b6e58c417
* Wire collectibles frontend UI with controller data
42 lines
672 B
SCSS
42 lines
672 B
SCSS
.collectibles-items {
|
|
&__image__wrapper {
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&__image {
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&__item {
|
|
margin-bottom: 24px;
|
|
|
|
&__accordion-title {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&__collection-image {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
&__collection-image-alt {
|
|
border-radius: 50%;
|
|
width: 32px;
|
|
height: 32px;
|
|
padding: 8px;
|
|
background: $ui-4;
|
|
color: $ui-white;
|
|
text-align: center;
|
|
line-height: 1;
|
|
}
|
|
}
|
|
}
|