Fixed rounded corner bug
parent
65b17ad53b
commit
9efabff1f8
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue