mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
a144b75fe8
* Show Bridge button in TokenOverview component * Hide Swap button in token overview page when network is not supported
150 lines
2.3 KiB
SCSS
150 lines
2.3 KiB
SCSS
.wallet-overview {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex: 1;
|
|
min-height: 209px;
|
|
min-width: 0;
|
|
padding-top: 10px;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
|
|
&__balance {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
&__buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 68px;
|
|
margin-bottom: 24px;
|
|
}
|
|
}
|
|
|
|
%asset-buttons {
|
|
min-width: initial;
|
|
width: 100px;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
text-transform: uppercase;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.eth-overview {
|
|
&__balance {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
position: relative;
|
|
align-items: center;
|
|
margin: 16px 0;
|
|
padding: 0 16px;
|
|
max-width: 326px;
|
|
}
|
|
|
|
&__primary-container {
|
|
display: flex;
|
|
max-width: inherit;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
&__primary-balance {
|
|
@include H2;
|
|
|
|
color: var(--color-text-default);
|
|
}
|
|
|
|
&__cached-star {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
&__portfolio-button {
|
|
height: inherit;
|
|
padding-inline-start: 16px;
|
|
}
|
|
|
|
&__cached-balance,
|
|
&__cached-star {
|
|
color: var(--color-warning-default);
|
|
}
|
|
|
|
&__cached-secondary-balance {
|
|
@include Paragraph;
|
|
|
|
color: var(--color-warning-muted);
|
|
}
|
|
|
|
&__secondary-balance {
|
|
@include Paragraph;
|
|
|
|
color: var(--color-text-alternative);
|
|
}
|
|
|
|
|
|
&__button:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
|
|
&__circle {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 36px;
|
|
width: 36px;
|
|
background: var(--color-primary-default);
|
|
border-radius: 18px;
|
|
margin-top: 6px;
|
|
}
|
|
}
|
|
|
|
.token-overview {
|
|
&__balance {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
position: relative;
|
|
align-items: center;
|
|
margin: 16px 0;
|
|
padding: 0 16px;
|
|
max-width: 326px;
|
|
}
|
|
|
|
&__primary-container {
|
|
display: flex;
|
|
max-width: inherit;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
&__primary-balance {
|
|
@include H2;
|
|
|
|
color: var(--color-text-default);
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
&__secondary-balance {
|
|
@include H5;
|
|
|
|
color: var(--color-text-alternative);
|
|
}
|
|
|
|
&__portfolio-button {
|
|
height: inherit;
|
|
padding-inline-start: 16px;
|
|
}
|
|
|
|
&__button:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
}
|