Skip to content

Commit

Permalink
[ACS-4326] Content was overlapping with other contents and some eleme…
Browse files Browse the repository at this point in the history
…nts 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
  • Loading branch information
jatin2008 authored Feb 20, 2023
1 parent 02dcd4f commit 8e3d5a9
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 8e3d5a9

Please sign in to comment.