Reduce mobile menu icon size

This commit is contained in:
Server 2026-08-10 00:11:50 +00:00
parent 416fd1eec6
commit db3f096794
2 changed files with 2 additions and 1 deletions

View file

@ -165,7 +165,7 @@ button { color: inherit; }
.mobile-search-results .search-result strong { font-size: 1.25rem; }
.mobile-search-results .search-result span { font-size: 1rem; }
.mobile-dock { position: fixed; inset: auto 0 0; z-index: 50; display: flex; align-items: center; gap: 18px; padding: 16px 28px max(22px, env(safe-area-inset-bottom)); background: linear-gradient(0deg, var(--shell) 74%, transparent); }
.mobile-menu-button { width: 72px; height: 72px; flex: 0 0 72px; border-radius: 50%; color: var(--text); background: var(--control); font-size: 2rem; }
.mobile-menu-button { width: 72px; height: 72px; flex: 0 0 72px; border-radius: 50%; color: var(--text); background: var(--control); font-size: 1.6rem; }
body.mobile-menu-open .mobile-menu-button { background: var(--active); }
.mobile-search-control { display: flex; min-width: 0; height: 72px; flex: 1; align-items: center; border-radius: 38px; background: var(--control); }
.mobile-search-control input { padding-left: 30px; font-size: 1.3rem; }

View file

@ -107,6 +107,7 @@ def test_all_endpoints_and_self_contained_build(tmp_path):
assert ".mobile-search-control input { padding-left: 30px; font-size: 1.3rem; }" in html
assert "background: transparent; font-size: 2.3rem" in html
assert ".mobile-page-tree .tree-link { min-height: 46px; padding: 9px 14px; border-radius: 24px" in html
assert ".mobile-menu-button { width: 72px; height: 72px; flex: 0 0 72px; border-radius: 50%; color: var(--text); background: var(--control); font-size: 1.6rem; }" in html
assert "<script src=" not in html
assert "<link rel=" not in html