[ACS-4326] Content was overlapping with other contents and some elements were missing when we zoom at 400% or 320px equivalent which is fixed (#8191)

* content was overlapping earlier and some of the elements were lost at 400% or 320px equivalent which is fixed now

* extra space removal

* content overlapping verified upto 400% zoom including all other zooms i.e 200% 300% etc

* length-zero-no-unit issue fixed - stylelint
This commit is contained in:
Jatin Chugh
2023-02-20 21:29:25 +05:30
committed by GitHub
parent 02dcd4fb48
commit 8e3d5a9b9f

View File

@@ -81,3 +81,23 @@
[adfUploadDialogLeft] .adf-upload-dialog { left: 25px; }
[adfUploadDialogRight] .adf-upload-dialog { right: 25px; }
@media screen and (min-width: 380px) and (max-width: 768px) {
.adf-upload-dialog {
width: 60%;
}
.adf-file-uploading-row .adf-file-uploading-row__group {
min-width: 0;
}
}
@media screen and (max-width: 380px) {
.adf-upload-dialog {
width: 85%;
}
.adf-file-uploading-row .adf-file-uploading-row__group {
min-width: 0;
}
}