mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-01 15:10:48 +08:00

* POC of mkdocs barebones * Add more stuff! --------- Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
12 lines
310 B
Plaintext
12 lines
310 B
Plaintext
# Overscroll
|
|
|
|
[Overscroll](https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior) is the "bounce effect" you sometimes
|
|
get when you scroll beyond a page's content boundaries. This is common in mobile apps. This can be disabled using CSS:
|
|
|
|
```css
|
|
html {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
```
|