Merge pull request '[PR]: Fixes Avatar Crop UI' (#10469) from dvd/calckey:fix/crop-ui into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10469
This commit is contained in:
commit
214f445905
|
@ -13,7 +13,7 @@
|
|||
<template #default="{ width, height }">
|
||||
<div
|
||||
class="mk-cropper-dialog"
|
||||
:style="`--vw: ${width}px; --vh: ${height}px;`"
|
||||
:style="`--vw: ${width ? `${width}px` : '100%'}; --vh: ${height ? `${height}px` : '100%'};`"
|
||||
>
|
||||
<Transition name="fade">
|
||||
<div v-if="loading" class="loading">
|
||||
|
|
Loading…
Reference in New Issue