Files
textual/docs/examples/styles/visibility.tcss
Rodrigo Girão Serrão 5ee0ebfef4 Rename CSS files to TCSS.
Related issue: #3137.
2023-08-22 13:21:17 +01:00

16 lines
186 B
Plaintext

Screen {
background: green;
}
Label {
height: 5;
width: 100%;
background: white;
color: blue;
border: heavy blue;
}
Label.invisible {
visibility: hidden;
}