19 lines
291 B
SCSS
Executable File
19 lines
291 B
SCSS
Executable File
#author-list {
|
|
.author-entry {
|
|
border-bottom: 1px solid $borderColor;
|
|
.author-image-container {
|
|
.author-image {
|
|
position: relative;
|
|
}
|
|
}
|
|
.user-flag{
|
|
display: none;
|
|
}
|
|
|
|
&.isUser{
|
|
.user-flag{
|
|
display: inherit;
|
|
}
|
|
}
|
|
}
|
|
} |