27 lines
442 B
SCSS
27 lines
442 B
SCSS
|
.myprofile {
|
||
|
position: absolute;
|
||
|
display: flex;
|
||
|
flex-flow: column;
|
||
|
justify-content: center;
|
||
|
height: 80px;
|
||
|
width: 68px;
|
||
|
bottom: 10px;
|
||
|
color: #ffffff;
|
||
|
font-size: 11px;
|
||
|
text-align: center;
|
||
|
|
||
|
.myprofile-img {
|
||
|
display: block;
|
||
|
border-radius: 10px;
|
||
|
height: 42px;
|
||
|
width: 42px;
|
||
|
background-color: #efefef;
|
||
|
align-self: center;
|
||
|
margin-bottom: 6px;
|
||
|
|
||
|
.thumbnail {
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
}
|
||
|
}
|