first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-10-14 22:02:57 -04:00
commit 5f95d857d4
783 changed files with 112323 additions and 0 deletions
@@ -0,0 +1,43 @@
.dropzone {
background: #fdfdfd;
border: 2px dashed #eee;
padding: 20px;
border-radius: 10px;
cursor: pointer;
}
.thumbImage {
margin-right: 30px;
}
.fileDetails {
display: flex;
align-items: center;
}
.filePreview {
margin-right: 10px;
}
.fileName {
font-size: 14px;
font-weight: 500;
}
.buttons {
text-align: end;
}
@media screen and (max-width: 900px) {
.thumbImage {
margin-right: 0;
margin-bottom: 20px;
}
}
/* For RTL Style */
[dir="rtl"] .thumbImage {
margin-right: 0;
margin-left: 30px;
}
/* For dark mode */
[class="dark"] .dropzone {
background: #181717;
border: 2px dashed var(--borderColor);
}