Fix truncated search results on small screens (#7099)

This commit is contained in:
Mario Pietsch 2022-12-07 18:14:12 +01:00 committed by GitHub
parent 9f867ad51e
commit 17a1ae23eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -1999,6 +1999,15 @@ html body.tc-body.tc-single-tiddler-window {
margin: auto;
}
/* Make search dropdown visible on small screens. issue #7003 */
@media (max-width: <<sidebarbreakpoint>>) {
.tc-sidebar-search .tc-block-dropdown-wrapper {
position: initial;
}
}
/*
** Modals
*/