Skip to content

Commit

Permalink
fix(theseus): Error modal (#1325)
Browse files Browse the repository at this point in the history
* fix(theseus): Close button in ErrorModal

* fix(theseus): Overflow in ErrorModal
  • Loading branch information
Norbiros authored Jul 27, 2024
1 parent 57ba841 commit a238dcc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/app-frontend/src/components/ui/ErrorModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async function loginMinecraft() {
</div>
<div class="input-group push-right">
<a :href="supportLink" class="btn" @click="errorModal.hide()"><ChatIcon /> Get support</a>
<button class="btn" @clicdck="errorModal.hide()"><XIcon /> Close</button>
<button class="btn" @click="errorModal.hide()"><XIcon /> Close</button>
</div>
</div>
</Modal>
Expand Down Expand Up @@ -223,4 +223,8 @@ async function loginMinecraft() {
gap: var(--gap-md);
padding: var(--gap-lg);
}
.markdown-body {
overflow: auto;
}
</style>

0 comments on commit a238dcc

Please sign in to comment.