Skip to content

Commit

Permalink
Merge branch 'bugfix/share-modal-overflow' into 'devel'
Browse files Browse the repository at this point in the history
Prevent share modal content from overflowing

Closes #1120

See merge request sds-dev/sd-connect/swift-browser-ui!172
  • Loading branch information
Hang Le committed Oct 17, 2023
2 parents 0db4c8a + 266b371 commit 2a43431
Show file tree
Hide file tree
Showing 5 changed files with 206 additions and 154 deletions.
8 changes: 4 additions & 4 deletions swift_browser_ui_frontend/src/components/CopyFolderModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -346,13 +346,13 @@ export default {
max-height: 75vh;
}
@media screen and (max-width: 766px), (max-height: 580px) {
@media screen and (max-width: 767px), (max-height: 580px) {
.copy-folder {
top: -5rem;
}
}
@media screen and (max-height: 580px) and (max-width: 766px),
@media screen and (max-height: 580px) and (max-width: 767px),
(max-width: 525px) {
.copy-folder {
top: -9rem;
Expand All @@ -362,8 +362,8 @@ export default {
@media screen and (max-height: 580px) and (max-width: 525px) {
.copy-folder {
top: -13rem;
}
}
}
}
c-card-content {
color: var(--csc-dark);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,13 +229,13 @@ export default {
max-height: 75vh;
}
@media screen and (max-width: 766px), (max-height: 580px) {
@media screen and (max-width: 767px), (max-height: 580px) {
.add-folder {
top: -5rem;
}
}
@media screen and (max-height: 580px) and (max-width: 766px),
@media screen and (max-height: 580px) and (max-width: 767px),
(max-width: 525px) {
.add-folder {
top: -9rem;
Expand All @@ -245,8 +245,8 @@ export default {
@media screen and (max-height: 580px) and (max-width: 525px) {
.add-folder {
top: -13rem;
}
}
}
}
c-card-content {
color: var(--csc-dark);
Expand Down
Loading

0 comments on commit 2a43431

Please sign in to comment.