mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
1553f70a65
The entire asset page breadcrumb is now clickable. Clicking it will bring the user back to the home page.
46 lines
641 B
SCSS
46 lines
641 B
SCSS
.asset {
|
|
&__container {
|
|
background-color: white;
|
|
}
|
|
|
|
&__overview {
|
|
box-shadow: 0px 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 {
|
|
font-size: 14px;
|
|
color: $Black-100;
|
|
background-color: inherit;
|
|
|
|
&__chevron {
|
|
padding: 0 10px 0 2px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
&__asset {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.token-options {
|
|
&__button {
|
|
font-size: 20px;
|
|
color: $Black-100;
|
|
background-color: inherit;
|
|
padding: 2px 8px;
|
|
}
|
|
|
|
&__icon {
|
|
font-size: 16px;
|
|
}
|
|
}
|