Compare commits

...

4 commits

5 changed files with 11 additions and 9 deletions

View file

@ -61,7 +61,7 @@
} }
&-user-name { &-user-name {
--emoji-size: 1em; --emoji-size: 14px;
} }
&-user-name-value { &-user-name-value {

View file

@ -86,7 +86,7 @@
} }
.cancel-search { .cancel-search {
height: 50px; height: 100%;
} }
.cancel-icon { .cancel-icon {

View file

@ -94,20 +94,21 @@
text-overflow: ellipsis; text-overflow: ellipsis;
--_still_image-label-scale: 0.25; --_still_image-label-scale: 0.25;
--emoji-size: 1em; --emoji-size: 18px;
} }
.status-favicon { .status-favicon {
height: 18px; height: 18px;
width: 18px; width: 18px;
margin-right: 0.4em; margin-right: 0.4em;
vertical-align: middle;
} }
.status-heading { .status-heading {
margin-bottom: 0.5em; margin-bottom: 0.5em;
.emoji { .emoji {
--emoji-size: 1em; --emoji-size: 18px;
} }
} }
@ -117,7 +118,6 @@
line-height: 1.3; line-height: 1.3;
a { a {
display: inline-block;
word-break: break-all; word-break: break-all;
} }
} }
@ -137,8 +137,6 @@
flex-wrap: wrap; flex-wrap: wrap;
.nowrap { .nowrap {
display: flex;
align-items: end;
white-space: nowrap; white-space: nowrap;
} }
} }

View file

@ -303,6 +303,10 @@
button { button {
margin: 0; margin: 0;
} }
.subscribe-button {
width: 2em;
}
} }
} }

View file

@ -198,7 +198,7 @@
<template v-if="relationship.following"> <template v-if="relationship.following">
<ProgressButton <ProgressButton
v-if="!relationship.subscribing" v-if="!relationship.subscribing"
class="btn button-default" class="btn button-default subscribe-button"
:click="subscribeUser" :click="subscribeUser"
:title="$t('user_card.subscribe')" :title="$t('user_card.subscribe')"
> >
@ -206,7 +206,7 @@
</ProgressButton> </ProgressButton>
<ProgressButton <ProgressButton
v-else v-else
class="btn button-default toggled" class="btn button-default subscribe-button toggled"
:click="unsubscribeUser" :click="unsubscribeUser"
:title="$t('user_card.unsubscribe')" :title="$t('user_card.unsubscribe')"
> >