88a988d876
Signed-off-by: Ajay Bura <ajbura@gmail.com>
32 lines
590 B
SCSS
32 lines
590 B
SCSS
|
|
.following-members {
|
|
width: 100%;
|
|
padding: 0 var(--sp-normal);
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
& .ic-raw {
|
|
min-width: var(--ic-extra-small);
|
|
opacity: 0.4;
|
|
margin: 0 var(--sp-extra-tight);
|
|
}
|
|
& .text {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
color: var(--tc-surface-low);
|
|
b {
|
|
color: var(--tc-surface-normal);
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background-color: var(--bg-surface-hover);
|
|
}
|
|
&:active {
|
|
background-color: var(--bg-surface-active);
|
|
}
|
|
} |