feat(mobile): improve about dialog layout

This commit is contained in:
Elian Doran 2025-01-04 18:53:34 +02:00
parent 05a667f256
commit b5d657071e
No known key found for this signature in database
2 changed files with 9 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const TPL = `
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="${t('help.close')}"></button>
</div>
<div class="modal-body" style="overflow: auto; height: calc(100vh - 70px);">
<div class="help-cards row row-cols-3 g-3">
<div class="help-cards row row-cols-md-3 g-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">${t('help.noteNavigation')}</h5>

View File

@ -1231,6 +1231,14 @@ body.mobile #launcher-pane .dropdown-menu.show {
margin: 0 !important;
max-height: 85vh;
}
body.mobile .modal-content {
height: 100% !important;
}
body.mobile .help-dialog kbd {
display: inline !important;
}
}
/* Mobile, tablet mode */