Address review comments.

This commit is contained in:
Rodrigo Girão Serrão
2023-03-14 14:33:10 +00:00
parent f9a1e27c6f
commit d775a90fa2
2 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ Button {
margin: 1 2; margin: 1 2;
} }
Horizontal>VerticalScroll { Horizontal > VerticalScroll {
width: 24; width: 24;
} }

View File

@@ -14,7 +14,7 @@ class Container(Widget):
class Vertical(Widget): class Vertical(Widget):
"""A container which lays children vertically.""" """A container which arranges children vertically."""
DEFAULT_CSS = """ DEFAULT_CSS = """
Vertical { Vertical {
@@ -26,7 +26,7 @@ class Vertical(Widget):
class VerticalScroll(Widget): class VerticalScroll(Widget):
"""A container which aligns children vertically and overflows automatically.""" """A container which arranges children vertically, with an automatic vertical scrollbar."""
DEFAULT_CSS = """ DEFAULT_CSS = """
VerticalScroll { VerticalScroll {
@@ -38,7 +38,7 @@ class VerticalScroll(Widget):
class Horizontal(Widget): class Horizontal(Widget):
"""A container which lays children horizontally.""" """A container which arranges children horizontally."""
DEFAULT_CSS = """ DEFAULT_CSS = """
Horizontal { Horizontal {
@@ -50,7 +50,7 @@ class Horizontal(Widget):
class HorizontalScroll(Widget): class HorizontalScroll(Widget):
"""A container which lays children horizontally and overflows automatically.""" """A container which arranges children horizontally, with an automatic horizontal scrollbar."""
DEFAULT_CSS = """ DEFAULT_CSS = """
HorizontalScroll { HorizontalScroll {