mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
27 lines
249 B
CSS
27 lines
249 B
CSS
Vertical {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
Placeholder {
|
|
height: 1fr;
|
|
width: 50%;
|
|
}
|
|
|
|
#p1 {
|
|
min-width: 25%; /* (1)! */
|
|
}
|
|
|
|
#p2 {
|
|
min-width: 75%;
|
|
}
|
|
|
|
#p3 {
|
|
min-width: 100;
|
|
}
|
|
|
|
#p4 {
|
|
min-width: 400h;
|
|
}
|