mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
25 lines
271 B
CSS
25 lines
271 B
CSS
Screen {
|
|
background: lightcoral;
|
|
}
|
|
|
|
#left_pane {
|
|
background: red;
|
|
width: 20
|
|
overflow: scroll scroll;
|
|
}
|
|
|
|
#middle_pane {
|
|
background: green;
|
|
width: 140;
|
|
}
|
|
|
|
#right_pane {
|
|
background: blue;
|
|
width: 30;
|
|
}
|
|
|
|
.box {
|
|
height: 12;
|
|
width: 30;
|
|
}
|