fix(client): double separator in global menu

This commit is contained in:
Elian Doran 2024-11-23 10:06:04 +02:00
parent 2950132271
commit a207fd523a
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View File

@ -219,7 +219,7 @@ const TPL = `
${t('global_menu.options')} ${t('global_menu.options')}
</li> </li>
<div class="dropdown-divider"></div> <div class="dropdown-divider desktop-only"></div>
<li class="dropdown-item show-help-button" data-trigger-command="showHelp"> <li class="dropdown-item show-help-button" data-trigger-command="showHelp">
<span class="bx bx-help-circle"></span> <span class="bx bx-help-circle"></span>

View File

@ -40,6 +40,10 @@ body {
font-size: var(--main-font-size); font-size: var(--main-font-size);
} }
body.mobile .desktop-only {
display: none !important;
}
a { a {
text-decoration: none; text-decoration: none;
} }