more docs

This commit is contained in:
Will McGugan
2022-08-04 15:27:41 +01:00
parent ae9862ce1f
commit fa4b971bff
13 changed files with 218 additions and 89 deletions

View File

@@ -42,9 +42,9 @@ overflow-x: scroll;
```python
# Hide the vertical scrollbar
self.styles.overflow_y = "hidden"
widget.styles.overflow_y = "hidden"
# Always show the horizontal scrollbar
self.styles.overflow_x = "scroll"
widget.styles.overflow_x = "scroll"
```