webapp/src/components/Author/Userpic.scss

36 lines
509 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;
line-height: 32px;
}
.anonymous {
object-fit: contain;
}
a {
&:hover {
color: #000;
}
}
}