Fill organization userpic background fully to avoid empty corners (#10944)

* Fill organization userpic background fully to avoid empty corners

* Reset `.crayons-logo` ::after pseudo element content

So the barely visible border is hidden for profiles
This commit is contained in:
Alex Timofeev 2020-10-21 17:11:41 +07:00 committed by GitHub
parent dae7565652
commit ae67e17678
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,10 +101,15 @@
.crayons-logo {
width: var(--su-9);
height: var(--su-9);
border: var(--su-1) solid var(--profile-brand-color);
background-color: var(--profile-brand-color);
padding: var(--su-1);
&::after {
content: none;
}
@media (min-width: $breakpoint-m) {
border-width: var(--su-2);
padding: var(--su-2);
width: var(--su-10);
height: var(--su-10);
}