35 lines
657 B
SCSS
35 lines
657 B
SCSS
|
.ucap-chat-room-list-item2 {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-content: center;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
.ucap-chat-room-list-item2-profile-image {
|
||
|
display: inline-flex;
|
||
|
position: relative;
|
||
|
align-self: center;
|
||
|
}
|
||
|
.ucap-chat-room-list-item2-info {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
.roomName {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
.ico-chat-list {
|
||
|
.ico-off {
|
||
|
&-false {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
&-true {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|