Fix application name position in status

This commit is contained in:
AkiraFukushima 2022-04-15 23:04:31 +09:00
parent 36c7c2a631
commit ede4b02f1e
No known key found for this signature in database
GPG Key ID: B6E51BAC4DE1A957
1 changed files with 116 additions and 110 deletions

View File

@ -132,6 +132,7 @@
>
</template>
</div>
<div class="toot-footer">
<div class="tool-box">
<el-button type="text" @click="openReply()" class="reply" :title="$t('cards.toot.reply')" :aria-label="$t('cards.toot.reply')">
<font-awesome-icon icon="reply" size="sm" />
@ -249,6 +250,7 @@
{{ $t('cards.toot.via', { application: application }) }}
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="fill-line"></div>
@ -950,6 +952,11 @@ export default {
}
}
.toot-footer {
display: flex;
justify-content: space-between;
}
.tool-box {
display: flex;
@ -992,7 +999,6 @@ export default {
}
.application {
float: right;
color: #909399;
}