webapp/src/components/Author/Userpic.module.scss

66 lines
932 B
SCSS
Raw Normal View History

2022-09-09 11:53:35 +00:00
.circlewrap {
border-radius: 100%;
height: 32px;
margin-right: 1.2rem;
min-width: 32px;
max-width: 32px;
overflow: hidden;
position: relative;
width: 32px;
img {
height: 100%;
object-fit: cover;
width: 100%;
}
.userpic {
border-radius: 50%;
font-size: small;
border: 2px solid black;
background-color: white;
text-align: center;
2022-11-11 08:58:22 +00:00
line-height: 28px;
2022-09-09 11:53:35 +00:00
}
.anonymous {
object-fit: contain;
}
a {
&:hover {
color: #000;
}
}
}
.big.circlewrap {
margin-right: 0;
max-width: 168px;
min-width: 168px;
height: 168px;
width: 168px;
@include media-breakpoint-up(md) {
margin-right: 4.8rem;
}
.userpic {
font-size: 2em;
line-height: 168px;
width: 100%;
}
}
2022-11-11 08:58:22 +00:00
.authorsList {
margin-right: 2.4rem;
max-height: 6.8rem;
min-width: 6.8rem;
height: 6.8rem;
width: 6.8rem;
.userpic {
line-height: 6.4rem;
}
}