mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
25 lines
368 B
CSS
25 lines
368 B
CSS
|
|
|
|
Vertical {
|
|
background: blue;
|
|
|
|
}
|
|
|
|
#container {
|
|
width:50%;
|
|
height: auto;
|
|
align-horizontal: center;
|
|
padding: 1;
|
|
border: heavy white;
|
|
background: white 50%;
|
|
overflow-y: auto
|
|
}
|
|
|
|
TextWidget {
|
|
/* width: 50%; */
|
|
height: auto;
|
|
padding: 2;
|
|
background: green 30%;
|
|
border: yellow;
|
|
box-sizing: border-box;
|
|
} |