standardize post buttons

This commit is contained in:
ThatOneCalculator 2023-05-19 23:38:36 -07:00
parent b049b5bfaa
commit 2d316fca4a
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 5 additions and 4 deletions

View file

@ -203,8 +203,8 @@
> >
<i class="ph-plug ph-bold ph-lg"></i> <i class="ph-plug ph-bold ph-lg"></i>
</button> </button>
<!-- v-if="showMfmCheatsheet" -->
<button <button
v-if="showMfmCheatsheet"
v-tooltip="i18n.ts._mfm.cheatSheet" v-tooltip="i18n.ts._mfm.cheatSheet"
class="_button right" class="_button right"
@click="openCheatSheet" @click="openCheatSheet"

View file

@ -149,7 +149,8 @@
<MkButton <MkButton
v-if="hasMfm && defaultStore.state.animatedMfm" v-if="hasMfm && defaultStore.state.animatedMfm"
@click.stop="toggleMfm" @click.stop="toggleMfm"
:mini="true" mini
rounded
> >
<template v-if="disableMfm"> <template v-if="disableMfm">
<i class="ph-play ph-bold"></i> {{ i18n.ts._mfm.play }} <i class="ph-play ph-bold"></i> {{ i18n.ts._mfm.play }}

View file

@ -93,10 +93,10 @@
</component> </component>
</transition> </transition>
<div v-if="tweetId" class="expandTweet"> <div v-if="tweetId" class="expandTweet">
<a @click="tweetExpanded = true"> <MkButton mini rounded @click="tweetExpanded = true">
<i class="ph-twitter-logo ph-bold ph-lg"></i> <i class="ph-twitter-logo ph-bold ph-lg"></i>
{{ i18n.ts.expandTweet }} {{ i18n.ts.expandTweet }}
</a> </MkButton>
</div> </div>
</div> </div>
</template> </template>