mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
* container refactor * Rearrange css * changelog * try timer updates * force update * sleep idle * Restore updates
24 lines
336 B
CSS
24 lines
336 B
CSS
Horizontal {
|
|
padding: 1 2; /* (1)! */
|
|
background: white;
|
|
height: 1fr;
|
|
}
|
|
|
|
#top {} /* (2)! */
|
|
|
|
#middle { /* (3)! */
|
|
visibility: hidden;
|
|
}
|
|
|
|
#bot { /* (4)! */
|
|
visibility: hidden;
|
|
}
|
|
|
|
#bot > Placeholder { /* (5)! */
|
|
visibility: visible;
|
|
}
|
|
|
|
Placeholder {
|
|
width: 1fr;
|
|
}
|