[Glitch] Fix use of inline CSS in public pages

Port c0b849bdfd to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
ThibG 2020-05-03 22:04:18 +02:00 committed by Thibaut Girka
parent 4a70792b4a
commit 51508e5061
3 changed files with 5 additions and 19 deletions

View file

@ -545,13 +545,6 @@ $small-breakpoint: 960px;
flex: 0 0 auto; flex: 0 0 auto;
} }
&__avatar {
width: 44px;
height: 44px;
background-size: 44px 44px;
@include avatar-size(44px);
}
.display-name { .display-name {
font-size: 15px; font-size: 15px;
@ -752,12 +745,6 @@ $small-breakpoint: 960px;
display: flex; display: flex;
align-items: center; align-items: center;
} }
.account__avatar {
width: 44px;
height: 44px;
background-size: 44px 44px;
}
} }
&__counters__wrapper { &__counters__wrapper {

View file

@ -38,9 +38,14 @@
.account__avatar { .account__avatar {
@include avatar-radius(); @include avatar-radius();
display: block;
position: relative; position: relative;
cursor: pointer; cursor: pointer;
width: 36px;
height: 36px;
background-size: 36px 36px;
&-inline { &-inline {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;

View file

@ -93,12 +93,6 @@
display: flex; display: flex;
align-items: center; align-items: center;
} }
.account__avatar {
width: 44px;
height: 44px;
background-size: 44px 44px;
}
} }
.trends__item { .trends__item {