Files
textual/tests/snapshot_tests/snapshot_apps/horizontal_auto_width.css
darrenburns a465f5c236 Horizontal width auto (#1155)
* Improvements to width:auto HorizontalLayout

* Fix HorizontalLayout.get_content_width

* Horizontal width auto improvement

* Removing some printxz

* Update snapshot for horizontal layout width auto dock
2022-11-16 14:49:52 +00:00

24 lines
314 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: auto;
background: darkslateblue;
}