Skip to content

Commit

Permalink
Update dialog style
Browse files Browse the repository at this point in the history
  • Loading branch information
aiql-admin authored Jul 13, 2024
1 parent f85f0fd commit 5ac497f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@
margin-bottom: 78px;
}

.dialog-card{
width: 960px;
max-width: 100vw;
max-height: 90vh;
}

#lottie {
height: calc(100vh - 50px);
max-height: calc(100% - 50px);
Expand Down Expand Up @@ -259,7 +265,7 @@ <h5 class="font-weight-bold">{{ column.key }}</h5>
</v-card>
</v-dialog>

<v-dialog v-model="settingStore.editDialog" width="600">
<v-dialog v-model="settingStore.editDialog">
<v-card>
<v-card-title class="pa-4 d-flex align-center">
<span class="flex-fill">Edit Card</span>
Expand Down Expand Up @@ -405,7 +411,7 @@ <h5 class="font-weight-bold">{{ column.key }}</h5>
</template>
</v-snackbar>

<v-dialog v-model="settingStore.configHistory" width="90vw" :max-width=800 max-height="90vh">
<v-dialog v-model="settingStore.configHistory" class="dialog-card">
<v-card prepend-icon="mdi-history" title="Query History" flat>
<template v-slot:append>
<v-card-actions>
Expand Down Expand Up @@ -447,7 +453,7 @@ <h5 class="font-weight-bold">{{ column.key }}</h5>

</v-dialog>
<!-- dialog -->
<v-dialog v-model="settingStore.configDialog" width="90vw" :max-width=800>
<v-dialog v-model="settingStore.configDialog" class="dialog-card">
<v-card prepend-icon="mdi-cog-outline" title="Interface Configuration">
<v-card-text class="mt-2 pb-0">
<!-- ---------------------------------------------- -->
Expand Down

0 comments on commit 5ac497f

Please sign in to comment.