mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 14:15:06 +01:00
ad28c81a39
Co-authored-by: Guillaume Roux <guillaumeroux123@gmail.com> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: David Walsh <davidwalsh83@gmail.com>
52 lines
872 B
SCSS
52 lines
872 B
SCSS
.collectibles-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;
|
|
}
|
|
|
|
&-item {
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
align-self: center;
|
|
}
|
|
|
|
&-item-image {
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|