mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
35af9ea301
* Override font-weight from Paragraph and set to 900 * Fix checkmark font-weight on swaps gas button selector
49 lines
694 B
SCSS
49 lines
694 B
SCSS
.asset {
|
|
&__container {
|
|
background-color: white;
|
|
}
|
|
|
|
&__overview {
|
|
box-shadow: 0 3px 4px rgba(135, 134, 134, 0.16);
|
|
}
|
|
}
|
|
|
|
.asset-navigation {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 16px;
|
|
height: 54px;
|
|
}
|
|
|
|
.asset-breadcrumb {
|
|
@include H6;
|
|
|
|
color: $Black-100;
|
|
background-color: inherit;
|
|
|
|
&__chevron {
|
|
font-size: $font-size-paragraph;
|
|
padding: 0 10px 0 2px;
|
|
}
|
|
|
|
&__asset {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.token-options {
|
|
&__button {
|
|
font-size: $font-size-paragraph;
|
|
color: $Black-100;
|
|
background-color: inherit;
|
|
padding: 2px 8px;
|
|
}
|
|
|
|
&__icon {
|
|
@include Paragraph;
|
|
|
|
font-weight: 900;
|
|
}
|
|
}
|