29 lines
460 B
SCSS
29 lines
460 B
SCSS
|
.project-profile-user-avatar {
|
||
|
align-self: center;
|
||
|
grid-column: 1 / span 1;
|
||
|
grid-row: 1 / span 2;
|
||
|
display: inline;
|
||
|
|
||
|
* {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
div {
|
||
|
background-color: $color-0-0-100;
|
||
|
border-radius: 50%;
|
||
|
height: 7vh;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
width: 7vh;
|
||
|
|
||
|
img {
|
||
|
height: 100%;
|
||
|
left: 0;
|
||
|
object-fit: cover;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
}
|