This commit is contained in:
Mehdi104797 2025-04-20 07:46:08 +03:30
parent 77578094d9
commit c78e6cb64c

View File

@ -513,7 +513,11 @@ const handlePagination = (prevNextIndicator: string) => {
<!-- because of the buttons, using without scoped. --> <!-- because of the buttons, using without scoped. -->
<style> <style>
.page-inner-container{
height: 100%;
}
.search-show-page { .search-show-page {
.body-header { .body-header {
.modal-title { .modal-title {
padding: 0 0.5em 1.5em; padding: 0 0.5em 1.5em;
@ -837,4 +841,14 @@ const handlePagination = (prevNextIndicator: string) => {
} }
} }
} }
@media screen and (max-width: 719.99px) {
.search-show-page {
.body-content {
.content {
height: calc(100dvh - 15em);
overflow-y: auto;
}
}
}
}
</style> </style>