Replies: 1 comment 1 reply
-
|
The link does not work for me ..
Your PR is welcome, we can test & discuss further in a PR .. thanks for having an eye on this 👍 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
On a browser with static vertical height, such as a simple desktop Firefox/Chrome, the Searxng footer ("powered by Searxng ...") sticks to the bottom of the page, even if you resize the window. On the home page with the search bar, this means that there is no scroll bar.
This is done with flex and 100vh:
searxng/client/simple/src/less/style.less
Lines 76 to 81 in b0beb30
However, on mobile phones with dynamic vertical height, for example Safari with chrome UI that recedes as you interact with the content, the footer will go below the chrome, causing vertical scroll bar to appear.
The solution can be to use
dvhfor the dynamic viewport height:dvhfor homepage withvhas fallback.dvhappears widely supported by browsers.I'm happy to take on this task, if maintainers/community do not mind the modifications. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions