fuck it, i dunno why it doesn't work right without flex

This commit is contained in:
Henry Jameson 2025-07-31 22:34:46 +03:00
commit 6e7ad5d554
2 changed files with 9 additions and 6 deletions

View file

@ -252,6 +252,9 @@
} }
.bottom-line { .bottom-line {
display: flex;
align-items: baseline;
flex-wrap: wrap;
white-space: normal; white-space: normal;
font-weight: 500; font-weight: 500;
font-size: 0.9em; font-size: 0.9em;

View file

@ -115,6 +115,12 @@
size="sm" size="sm"
/> />
</span> </span>
<span
v-if="relationship.followed_by && loggedIn && isOtherUser"
class="alert neutral user-role"
>
{{ $t('user_card.follows_you') }}
</span>
<template v-if="!hideBio"> <template v-if="!hideBio">
<span <span
v-if="user.deactivated" v-if="user.deactivated"
@ -152,12 +158,6 @@
> >
{{ blockExpiry }} {{ blockExpiry }}
</span> </span>
<span
v-if="relationship.followed_by && loggedIn && isOtherUser"
class="alert neutral user-role"
>
{{ $t('user_card.follows_you') }}
</span>
</template> </template>
</div> </div>
</div> </div>