Skip to content

Commit

Permalink
Merge pull request #10161 from nextcloud/fix/search-modal-small-scren
Browse files Browse the repository at this point in the history
fix: search modal on small screen
  • Loading branch information
ChristophWurst committed Sep 17, 2024
2 parents b1c5609 + a3afdd4 commit 6f31954
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/components/SearchMessages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,18 @@ export default {
}
}
}
@media (max-width: 420px) {
.modal-inner--container {
width: 100%;
flex-wrap: nowrap;
flex-direction: column;
}
}
@media (max-width: 420px) {
.search-modal .modal-inner--content .range {
flex-direction: row;
}
}
.multiselect-search-tags {
width: 100%;
}
Expand Down Expand Up @@ -717,6 +728,8 @@ export default {
.modal-inner--container {
width: calc(100% - 120px);
display: flex;
flex-wrap: wrap;
.select {
width: 100%;
Expand Down

0 comments on commit 6f31954

Please sign in to comment.