Fix edit event warning popup size

Imcrease width to 500px and allow to wrap text correctly if even longer

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-04-19 12:04:52 +02:00
parent a4a3475f65
commit cd874e1bfc
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 14 additions and 0 deletions

View File

@ -425,6 +425,20 @@ section {
}
}
</style>
<style lang="scss">
.dialog .modal-card {
max-width: 500px;
.modal-card-foot {
justify-content: center;
flex-wrap: wrap;
& > button {
margin-bottom: 5px;
}
}
}
</style>
<script lang="ts">
import { Component, Prop, Vue, Watch } from "vue-property-decorator";