[mirotalksfu] - #194 Handle fetchAndStoreImage errors

هذا الالتزام موجود في:
Miroslav Pejic
2025-02-18 21:07:11 +01:00
الأصل 0e8b99b262
التزام 81a102c3b5
7 ملفات معدلة مع 64 إضافات و6 حذوفات

عرض الملف

@@ -322,6 +322,28 @@ body {
background: var(--body-bg) !important;
}
/*--------------------------------------------------------------
# Error span
--------------------------------------------------------------*/
.show-error {
margin-top: 10px !important;
color: red !important;
opacity: 0 !important;
transition: opacity 0.5s ease-in-out !important;
display: none;
}
.show-error.fade-in {
opacity: 1 !important;
display: block;
}
.show-error.fade-out {
opacity: 0 !important;
display: none;
}
/*--------------------------------------------------------------
# Buttons bar
--------------------------------------------------------------*/