Merge branch 'more-share-page-querys' into swn

This commit is contained in:
tamaina 2021-09-05 00:45:45 +09:00
commit 02007ccec5
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>