chore: formatting

This commit is contained in:
ThatOneCalculator 2023-06-18 18:36:34 -07:00
parent 6fd240a764
commit fe0ceb98c5
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
4 changed files with 5 additions and 10 deletions

View File

@ -30,9 +30,7 @@
<template <template
v-else-if="hasPendingFollowRequestFromYou && user.isLocked" v-else-if="hasPendingFollowRequestFromYou && user.isLocked"
> >
<span>{{ <span>{{ (state = i18n.ts.followRequestPending) }}</span
(state = i18n.ts.followRequestPending)
}}</span
><i class="ph-hourglass-medium ph-bold ph-lg"></i> ><i class="ph-hourglass-medium ph-bold ph-lg"></i>
</template> </template>
<template <template

View File

@ -623,7 +623,7 @@ defineExpose({
margin-top: 16px; margin-top: 16px;
border-left: 2px solid currentColor; border-left: 2px solid currentColor;
margin-left: calc((var(--avatarSize) / 2) - 1px); margin-left: calc((var(--avatarSize) / 2) - 1px);
opacity: .25; opacity: 0.25;
} }
} }
} }

View File

@ -652,7 +652,7 @@ function noteClick(e) {
flex-grow: 1; flex-grow: 1;
margin-bottom: -10px; margin-bottom: -10px;
pointer-events: none; pointer-events: none;
opacity: .25; opacity: 0.25;
&::before { &::before {
content: ""; content: "";
position: absolute; position: absolute;
@ -694,7 +694,7 @@ function noteClick(e) {
z-index: 2; z-index: 2;
left: 0; left: 0;
top: 0; top: 0;
opacity: .25; opacity: 0.25;
&::after { &::after {
content: ""; content: "";
position: absolute; position: absolute;

View File

@ -46,10 +46,7 @@
</div> </div>
</div> </div>
<div class="koudoku-button"> <div class="koudoku-button">
<MkFollowButton <MkFollowButton v-if="$i && user.id != $i.id" :user="user" />
v-if="$i && user.id != $i.id"
:user="user"
/>
</div> </div>
</div> </div>
</template> </template>