mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
19 lines
236 B
Plaintext
19 lines
236 B
Plaintext
ScrollableContainer {
|
|
width: 1fr;
|
|
}
|
|
|
|
#v1 {
|
|
scrollbar-size: 5 1;
|
|
background: red 20%;
|
|
}
|
|
|
|
#v2 {
|
|
scrollbar-size-vertical: 1;
|
|
background: green 20%;
|
|
}
|
|
|
|
#v3 {
|
|
scrollbar-size-horizontal: 5;
|
|
background: blue 20%;
|
|
}
|