Files
textual/docs/examples/styles/visibility_containers.css
Will McGugan f53c3cd589 container refactor (#2377)
* container refactor

* Rearrange css

* changelog

* try timer updates

* force update

* sleep idle

* Restore updates
2023-04-26 13:36:08 +01:00

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;
}