mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
24 lines
341 B
CSS
24 lines
341 B
CSS
Screen {
|
|
background: #212121;
|
|
color: white 80%;
|
|
layout: horizontal;
|
|
}
|
|
|
|
Static {
|
|
padding: 1 2;
|
|
}
|
|
|
|
.panel1 {
|
|
width: 1fr;
|
|
scrollbar-color: green;
|
|
scrollbar-background: #bbb;
|
|
padding: 1 2;
|
|
}
|
|
|
|
.panel2 {
|
|
width: 1fr;
|
|
scrollbar-color: yellow;
|
|
scrollbar-background: purple;
|
|
padding: 1 2;
|
|
}
|