mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
39 lines
637 B
SCSS
39 lines
637 B
SCSS
.selected-account {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex: 1;
|
|
|
|
&__name {
|
|
max-width: 200px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
}
|
|
|
|
&__address {
|
|
font-size: .75rem;
|
|
color: $silver-chalice;
|
|
}
|
|
|
|
&__clickable {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 5px 15px;
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: #e8e6e8;
|
|
}
|
|
|
|
&:active {
|
|
background-color: #d9d7da;
|
|
}
|
|
}
|
|
}
|