leejinho 1be22492f2 [19 현재 대화방은 전달 기능 불가능] 현재 대화방도 전달 가능하도록 수정.
[30 대화 참여자 목록 프로필 정렬 오류] 프레즌스 정보가 없어도 공간 확보.
대화방 파일 expired 처리 수정.
2019-11-22 14:17:53 +09:00

26 lines
414 B
SCSS

%presence {
display: inline-block;
width: 8px;
height: 8px;
align-self: flex-start;
align-items: center;
text-indent: -10000000px;
margin-right: 4px;
border-radius: 100px;
}
.presence {
@extend %presence;
&.pcOn {
background-color: #28ad66;
}
&.pcOut {
background-color: #f35b5b;
}
&.pcOff {
background-color: #a29f9f;
}
&.pcOther {
background-color: #f0c10a;
}
}