mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
24 lines
377 B
Plaintext
24 lines
377 B
Plaintext
#label1 {
|
|
border: solid $secondary;
|
|
border-subtitle-align: left;
|
|
}
|
|
|
|
#label2 {
|
|
border: dashed $secondary;
|
|
border-subtitle-align: center;
|
|
}
|
|
|
|
#label3 {
|
|
border: tall $secondary;
|
|
border-subtitle-align: right;
|
|
}
|
|
|
|
Screen > Label {
|
|
width: 100%;
|
|
height: 5;
|
|
content-align: center middle;
|
|
color: white;
|
|
margin: 1;
|
|
box-sizing: border-box;
|
|
}
|