1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
metamask-extension/ui/components/app/collectibles-items/index.scss
Alex Donesky 1b6e58c417
Feat/collectibles the return (#12970)
* Wire collectibles frontend UI with controller data
2021-12-13 17:41:10 -06:00

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;
}
}
}