mirror of https://github.com/Chocobozzz/PeerTube
33 lines
523 B
SCSS
33 lines
523 B
SCSS
@import '_mixins';
|
|
|
|
.wrapper {
|
|
width: 35px;
|
|
height: 35px;
|
|
min-width: 35px;
|
|
min-height: 35px;
|
|
position: relative;
|
|
margin-right: 5px;
|
|
|
|
a {
|
|
@include disable-outline;
|
|
}
|
|
|
|
a img {
|
|
height: 100%;
|
|
object-fit: cover;
|
|
position: absolute;
|
|
top:50%;
|
|
left:50%;
|
|
border-radius: 50%;
|
|
transform: translate(-50%,-50%)
|
|
}
|
|
|
|
a:nth-of-type(2) img {
|
|
height: 60%;
|
|
width: 60%;
|
|
border: 2px solid var(--mainBackgroundColor);
|
|
transform: translateX(15%);
|
|
position: relative;
|
|
}
|
|
}
|