mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
ad28c81a39
Co-authored-by: Guillaume Roux <guillaumeroux123@gmail.com> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: David Walsh <davidwalsh83@gmail.com>
80 lines
1.3 KiB
SCSS
80 lines
1.3 KiB
SCSS
.connected-accounts-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
&__identicon {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
&__account-name {
|
|
@include H6;
|
|
|
|
display: inline;
|
|
font-weight: bold;
|
|
}
|
|
|
|
%account-status-typography {
|
|
@include H7;
|
|
|
|
padding-top: 4px;
|
|
}
|
|
|
|
&__account-status {
|
|
@extend %account-status-typography;
|
|
|
|
display: inline;
|
|
color: var(--color-text-alternative);
|
|
}
|
|
|
|
&__account-status-link {
|
|
@extend %account-status-typography;
|
|
|
|
display: block;
|
|
|
|
&,
|
|
&:hover {
|
|
color: var(--color-primary-default);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
&__row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 16px 24px;
|
|
border-top: 1px solid var(--color-border-muted);
|
|
|
|
&--highlight {
|
|
background-color: var(--color-warning-muted);
|
|
border: 1px solid var(--color-warning-default);
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
margin-bottom: 16px;
|
|
width: calc(100% - 16px);
|
|
}
|
|
}
|
|
|
|
&__row-content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.connected-accounts-options {
|
|
&__button {
|
|
font-size: $font-size-h4;
|
|
background: inherit;
|
|
color: var(--color-icon-default);
|
|
}
|
|
}
|
|
|
|
.tippy-tooltip.none-theme {
|
|
background: none;
|
|
padding: 0;
|
|
}
|