You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.3 KiB
80 lines
1.3 KiB
5 years ago
|
.connected-accounts-list {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
|
||
|
&__identicon {
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
|
||
|
&__account-name {
|
||
4 years ago
|
@include H6;
|
||
|
|
||
5 years ago
|
display: inline;
|
||
5 years ago
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
5 years ago
|
%account-status-typography {
|
||
4 years ago
|
@include H7;
|
||
|
|
||
5 years ago
|
padding-top: 4px;
|
||
|
}
|
||
|
|
||
5 years ago
|
&__account-status {
|
||
5 years ago
|
@extend %account-status-typography;
|
||
4 years ago
|
|
||
5 years ago
|
display: inline;
|
||
5 years ago
|
color: $Grey-500;
|
||
|
}
|
||
|
|
||
|
&__account-status-link {
|
||
5 years ago
|
@extend %account-status-typography;
|
||
4 years ago
|
|
||
5 years ago
|
display: block;
|
||
|
|
||
4 years ago
|
&,
|
||
|
&:hover {
|
||
4 years ago
|
color: $primary-blue;
|
||
5 years ago
|
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 {
|
||
4 years ago
|
background-color: $Yellow-000;
|
||
|
border: 1px solid $accent-yellow;
|
||
5 years ago
|
box-sizing: border-box;
|
||
|
padding: 16px;
|
||
|
margin-bottom: 16px;
|
||
4 years ago
|
width: calc(100% - 16px);
|
||
5 years ago
|
}
|
||
|
}
|
||
|
|
||
|
&__row-content {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.connected-accounts-options {
|
||
5 years ago
|
&__button {
|
||
4 years ago
|
font-size: $font-size-h4;
|
||
5 years ago
|
background: inherit;
|
||
|
color: $Grey-500;
|
||
|
}
|
||
5 years ago
|
}
|
||
|
|
||
|
.tippy-tooltip.none-theme {
|
||
|
background: none;
|
||
|
padding: 0;
|
||
|
}
|