DialogFooter.vue 353 B

123456789101112131415161718192021
  1. <template>
  2. <div class="dialog-footer">
  3. <div>{{ $t('conversation.attention') }}</div>
  4. </div>
  5. </template>
  6. <script setup></script>
  7. <style lang="css" scoped>
  8. .dialog-footer {
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. color: var(--color-text-3);
  13. font-size: 14px;
  14. font-weight: 400;
  15. line-height: 19.6px;
  16. }
  17. </style>