This commit is contained in:
tamaina 2021-09-05 00:45:29 +09:00
parent 29e0af7bb8
commit 1a675cb283
1 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,7 @@
@posted="state = 'posted'" @posted="state = 'posted'"
class="_panel" class="_panel"
/> />
<MkButton v-else-if="state === 'posted'" primary @click="close()">{{ $ts.close }}</MkButton> <MkButton v-else-if="state === 'posted'" primary @click="close()" class="close">{{ $ts.close }}</MkButton>
</div> </div>
</section> </section>
</div> </div>
@ -173,4 +173,7 @@ export default defineComponent({
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.close {
margin: 16px auto;
}
</style> </style>