You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
414 B
16 lines
414 B
2 years ago
|
/*
|
||
|
* Rounded avatars:
|
||
|
* - adjust the border radius around all avatar elements.
|
||
|
* - default override is 50% (i.e. turn squares into circles),
|
||
|
* but you can set it to whatever you want.
|
||
|
*
|
||
|
* author: trwnh
|
||
|
* license: Public Domain
|
||
|
*/
|
||
|
.card .avatar img,
|
||
|
.activity-stream .status.light .status__avatar img,
|
||
|
.account__avatar,
|
||
|
.account__avatar-overlay-base,
|
||
|
.account__avatar-overlay-overlay
|
||
|
{border-radius: 50%}
|