We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41441df commit bcaad58Copy full SHA for bcaad58
tests/snapshot_tests/__snapshots__/test_snapshots/test_fr_and_margin.svg
tests/snapshot_tests/test_snapshots.py
@@ -2359,6 +2359,7 @@ class FRApp(App):
2359
#third-container {
2360
margin: 4;
2361
background: blue;
2362
+ height: auto;
2363
}
2364
"""
2365
@@ -2369,7 +2370,7 @@ def compose(self) -> ComposeResult:
2369
2370
with Container(id="second-container"):
2371
yield Label("A margin of 2, should be 2 cells around the text")
2372
- with Center(id="third-container"):
2373
+ with Container(id="third-container"):
2374
yield Label("A margin of 4, should be 4 cells around the text")
2375
2376
assert snap_compare(FRApp())
0 commit comments