mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
47 lines
680 B
SCSS
47 lines
680 B
SCSS
.account-dropdown-name {
|
|
font-family: 'DIN OT';
|
|
}
|
|
|
|
.account-dropdown-balance {
|
|
color: $dusty-gray;
|
|
line-height: 19px;
|
|
}
|
|
|
|
.account-dropdown-edit-button {
|
|
color: $dusty-gray;
|
|
font-family: "DIN OT";
|
|
|
|
&:hover {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
.account-list-item {
|
|
&__top-row {
|
|
display: flex;
|
|
margin-top: 10px;
|
|
margin-left: 8px;
|
|
position: relative;
|
|
}
|
|
|
|
&__account-name {
|
|
font-size: 16px;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
&__icon {
|
|
position: absolute;
|
|
right: 12px;
|
|
top: 1px;
|
|
}
|
|
&__account-primary-balance {
|
|
margin-left: 34px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
&__account-secondary-balance {
|
|
margin-left: 34px;
|
|
color: $dusty-gray;
|
|
}
|
|
}
|