mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
25 lines
357 B
CSS
25 lines
357 B
CSS
#vertical-layout {
|
|
layout: vertical;
|
|
background: darkmagenta;
|
|
height: auto;
|
|
}
|
|
|
|
#horizontal-layout {
|
|
layout: horizontal;
|
|
background: darkcyan;
|
|
height: auto;
|
|
}
|
|
|
|
#center-layout {
|
|
layout: center;
|
|
background: darkslateblue;
|
|
height: 7;
|
|
}
|
|
|
|
Static {
|
|
margin: 1;
|
|
width: 12;
|
|
color: black;
|
|
background: yellowgreen;
|
|
}
|