50 lines
878 B
SCSS
Raw Normal View History

.myprofile {
2019-12-31 15:49:48 +09:00
position: relative;
flex-flow: row;
width: 60px;
height: 30px;
bottom: 10px;
color: #ffffff;
font-size: 11px;
2019-12-31 15:49:48 +09:00
justify-items: flex-end;
margin: 0 10px;
.myprofile-img {
display: block;
border-radius: 10px;
2019-12-31 15:49:48 +09:00
height: 30px;
width: 30px;
background-color: #efefef;
2019-12-31 15:49:48 +09:00
&.thumbnail-mask {
border-radius: 50%;
width: 30px;
height: 30px;
overflow: hidden;
.thumbnail {
width: 30px;
height: auto;
}
}
}
.btn-setting {
position: absolute;
bottom: 0;
display: inline-flex;
justify-items: flex-end;
left: 20px;
.presence {
display: inline-block;
bottom: 0;
width: 10px;
height: 11px;
border: 1px solid #ffffff;
align-self: flex-end;
}
svg {
&.on {
transform: rotate(180deg);
}
}
}
}