Skip to content

Commit

Permalink
fix: redirect modal style
Browse files Browse the repository at this point in the history
  • Loading branch information
floyd-li committed Aug 18, 2023
1 parent cf1251b commit d810288
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/redirect/RedirectModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const handleRedirect = () => {
</style>

<style lang="scss">
.redirect-modal .modal-content {
width: auto;
.redirect-modal {
z-index: 1000;
}
</style>
2 changes: 1 addition & 1 deletion components/redirect/useRedirectModal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const showModal = (url: string, i18n: VueI18n, modal) => {
modal.open({
component: RedirectModal,
canCancel: ['outside', 'escape'],
rootClass: 'redirect-modal',
rootClass: 'redirect-modal neo-modal',
props: {
url,
i18n,
Expand Down

0 comments on commit d810288

Please sign in to comment.