mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
5592687df1
* Updating design tokens v1.8 and shadows * Adding missing stories * Some fixes and updates to css and stories * removing unneeded story * Fixing story order
47 lines
745 B
SCSS
47 lines
745 B
SCSS
.asset {
|
|
&__container {
|
|
background-color: var(--color-background-default);
|
|
}
|
|
|
|
&__overview {
|
|
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
|
}
|
|
}
|
|
|
|
.asset-navigation {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 16px;
|
|
height: 64px;
|
|
}
|
|
|
|
.asset-breadcrumb {
|
|
@include H6;
|
|
|
|
color: var(--color-text-default);
|
|
background-color: inherit;
|
|
|
|
&__chevron {
|
|
font-size: $font-size-paragraph;
|
|
padding: 0 10px 0 2px;
|
|
}
|
|
|
|
&__asset {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.asset-options {
|
|
&__button {
|
|
font-size: $font-size-paragraph;
|
|
color: var(--color-text-default);
|
|
background-color: inherit;
|
|
padding: 2px 0 2px 8px;
|
|
}
|
|
|
|
&__icon {
|
|
font-weight: 900;
|
|
}
|
|
}
|