You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.2 KiB

2 years ago
  1. <template>
  2. <modal name="unLinkModal" width="100%" height="auto" :scrollable="true" :clickToClose="true">
  3. <div class="tw-w-full tw-p-[30px] tw-h-full tw-overflow-auto">
  4. <div class="modal-content">
  5. <div>
  6. <div class="tw-text-[18px] tw-text-neutrals-800 tw-break-words">
  7. {{$t('userProfile.unLinkText')}}
  8. </div>
  9. <button @click="$modal.hide('unLinkModal')"
  10. class="tw-mt-[40px] tw-bg-black tw-text-white tw-w-full tw-py-[12px] tw-rounded-[16px]">{{$t('userProfile.unLinkOK')}}</button>
  11. </div>
  12. </div>
  13. </div>
  14. </modal>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. };
  21. },
  22. methods: {
  23. },
  24. };
  25. </script>
  26. <style lang="scss" scoped>
  27. .v--modal-overlay[data-modal="unLinkModal"]::v-deep() .v--modal-background-click {
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. }
  32. :deep(.v--modal) {
  33. border-radius: 16px;
  34. max-width: 432px;
  35. min-height: max-content !important;
  36. }
  37. .close {
  38. background-image: url("~/assets/svg/close.svg");
  39. background-position: center;
  40. background-repeat: no-repeat;
  41. background-size: cover;
  42. width: 14px;
  43. height: 14px;
  44. }
  45. </style>