mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
* handle docked layers * handle scroll better * snapshot update * remove commented out code * superflous * dock gutter * snapshit * snapshit test * changelog * mistake * docstrings * changelog * whitespace * missing punctuation * ofx docstring * Apply suggestions from code review Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> --------- Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com>
25 lines
312 B
CSS
25 lines
312 B
CSS
.widget {
|
|
background: olivedrab;
|
|
width: 10;
|
|
margin: 1;
|
|
}
|
|
|
|
#dock-1 {
|
|
dock: left;
|
|
background: dodgerblue;
|
|
width: 5;
|
|
}
|
|
|
|
#dock-2 {
|
|
dock: left;
|
|
background: mediumvioletred;
|
|
margin: 3;
|
|
width: 20;
|
|
}
|
|
|
|
#horizontal {
|
|
width: auto;
|
|
height: 4;
|
|
background: darkslateblue;
|
|
}
|