Fixed rounded corner bug

pull/5806/head
Cagatay Civici 2024-05-30 10:50:17 +03:00
parent 65b17ad53b
commit 9efabff1f8
1 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ export default {
methods: { methods: {
show() { show() {
if (!this.visible) { if (!this.visible) {
this.$toast.add({ severity: 'custom', summary: 'Uploading your files.', group: 'headless', styleClass: 'backdrop-blur-lg' }); this.$toast.add({ severity: 'custom', summary: 'Uploading your files.', group: 'headless', styleClass: 'backdrop-blur-lg rounded-2xl' });
this.visible = true; this.visible = true;
this.progress = 0; this.progress = 0;
@ -162,7 +162,7 @@ onUnmounted(() => {
const show = () => { const show = () => {
if (!visible.value) { if (!visible.value) {
toast.add({ severity: 'custom', summary: 'Uploading your files.', group: 'headless', styleClass: 'backdrop-blur-lg' }); toast.add({ severity: 'custom', summary: 'Uploading your files.', group: 'headless', styleClass: 'backdrop-blur-lg rounded-2xl' });
visible.value = true; visible.value = true;
progress.value = 0; progress.value = 0;
@ -195,7 +195,7 @@ const show = () => {
methods: { methods: {
show() { show() {
if (!this.visible) { if (!this.visible) {
this.$toast.add({ severity: 'custom', summary: 'Uploading your files.', group: 'headless', styleClass: 'backdrop-blur-lg' }); this.$toast.add({ severity: 'custom', summary: 'Uploading your files.', group: 'headless', styleClass: 'backdrop-blur-lg rounded-2xl' });
this.visible = true; this.visible = true;
this.progress = 0; this.progress = 0;