2018-06-04 18:33:25 +02:00
|
|
|
.selected-account {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex: 1;
|
|
|
|
|
2020-04-02 04:38:45 +02:00
|
|
|
&__tooltip-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-06-04 18:33:25 +02:00
|
|
|
&__name {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H5;
|
|
|
|
|
2020-04-02 04:38:45 +02:00
|
|
|
width: 100%;
|
2019-06-13 04:56:04 +02:00
|
|
|
font-weight: 500;
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-text-default);
|
2018-06-04 18:33:25 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: center;
|
2019-06-13 04:56:04 +02:00
|
|
|
margin-bottom: 4px;
|
2018-06-04 18:33:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__address {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-06-13 04:56:04 +02:00
|
|
|
color: #989a9b;
|
2021-07-06 20:17:13 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-06-04 18:33:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__clickable {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2019-06-13 04:56:04 +02:00
|
|
|
margin: 4px 0;
|
2020-04-02 04:38:45 +02:00
|
|
|
padding: 6px 1px;
|
2018-06-04 18:33:25 +02:00
|
|
|
border-radius: 10px;
|
|
|
|
cursor: pointer;
|
2020-11-05 19:05:41 +01:00
|
|
|
width: 100%;
|
|
|
|
background-color: unset;
|
2018-06-04 18:33:25 +02:00
|
|
|
|
2022-03-16 15:49:25 +01:00
|
|
|
&:hover,
|
2018-06-04 18:33:25 +02:00
|
|
|
&:active {
|
2022-03-16 15:49:25 +01:00
|
|
|
background-color: var(--color-background-alternative);
|
2018-06-04 18:33:25 +02:00
|
|
|
}
|
|
|
|
}
|
2021-07-06 20:17:13 +02:00
|
|
|
|
|
|
|
&__copy {
|
|
|
|
height: 13px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-inline-start: 3px;
|
|
|
|
}
|
2018-06-04 18:33:25 +02:00
|
|
|
}
|