SUPER ADMIN
- Joined
- Sep 3, 2025
- Messages
- 267
- Reaction score
- 17
5
MONTHS
5
MONTHS OF SERVICE
to install Copy the following code to the extra.less template
Code:
.avatar{
width: 96px;
height: 96px;
border-radius: 4px;
padding: 2px;
transition: border-radius 1s ease;
border: 1px solid hsl(205,54%,77%);
&:hover {
border-radius: 50% !important;
animation: rotate 1s ease;
}
}
@keyframes rotate {
0% {
transform: rotate(0)
}
100% {
transform: rotate(360deg)
}
}