1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/app/connected-accounts-list/index.scss
2021-04-28 14:53:59 -05:00

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: $Grey-500;
}
&__account-status-link {
@extend %account-status-typography;
display: block;
&,
&:hover {
color: $primary-blue;
cursor: pointer;
}
}
&__row {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 16px 24px;
border-top: 1px solid $geyser;
&--highlight {
background-color: $Yellow-000;
border: 1px solid $accent-yellow;
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: $Grey-500;
}
}
.tippy-tooltip.none-theme {
background: none;
padding: 0;
}