forked from AkkomaGang/admin-fe
Fix mobile UI
This commit is contained in:
parent
d23abecff9
commit
340a970846
1 changed files with 9 additions and 4 deletions
|
@ -69,7 +69,8 @@ export default {
|
|||
confirmButtonText: i18n.t('reports.delete'),
|
||||
cancelButtonText: i18n.t('reports.cancel'),
|
||||
type: 'warning',
|
||||
showClose: false
|
||||
showClose: false,
|
||||
customClass: 'confirm-message'
|
||||
}).then(() => {
|
||||
this.$store.dispatch('DeleteNote', { reportId, noteId })
|
||||
this.$message({
|
||||
|
@ -137,7 +138,11 @@ export default {
|
|||
font-style: italic;
|
||||
color: gray;
|
||||
}
|
||||
@media
|
||||
only screen and (max-width: 760px),
|
||||
(min-device-width: 768px) and (max-device-width: 1024px) {}
|
||||
@media
|
||||
only screen and (max-width: 760px),
|
||||
(min-device-width: 768px) and (max-device-width: 1024px) {
|
||||
.confirm-message {
|
||||
width: 98%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue