Round mobile tree links

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

View file

@ -156,7 +156,7 @@ button { color: inherit; }
.mobile-header-buttons { display: flex; flex-direction: column; gap: 6px; margin-bottom: 38px; }
.mobile-header-buttons .header-link { padding: 12px 18px; border-radius: 28px; font-size: 1.05rem; }
.mobile-page-tree { overflow: visible; padding-bottom: 24px; }
.mobile-page-tree .tree-link { min-height: 46px; padding: 9px 14px; font-size: 1.05rem; }
.mobile-page-tree .tree-link { min-height: 46px; padding: 9px 14px; border-radius: 24px; font-size: 1.05rem; }
.mobile-page-tree .tree-children { margin-left: 20px; padding-left: 12px; }
.mobile-search-view { flex-direction: column; justify-content: flex-end; padding: 40px 28px calc(142px + env(safe-area-inset-bottom)); overflow: hidden; }
.mobile-search-results { display: flex; max-height: 100%; flex: 1; flex-direction: column-reverse; justify-content: flex-start; gap: 20px; overflow-y: auto; }

View file

@ -106,6 +106,7 @@ def test_all_endpoints_and_self_contained_build(tmp_path):
assert "flex-direction: column-reverse" in html
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 "<script src=" not in html
assert "<link rel=" not in html