diff --git a/src/textual/widgets/_radio_set.py b/src/textual/widgets/_radio_set.py index e8be8ccee..f18e21429 100644 --- a/src/textual/widgets/_radio_set.py +++ b/src/textual/widgets/_radio_set.py @@ -12,6 +12,18 @@ from ._toggle import ToggleButton class RadioSet(Container): """Widget for grouping a collection of radio buttons into a set.""" + DEFAULT_CSS = """ + RadioSet { + border: round #666; + height: auto; + width: auto; + } + + App.-light-mode RadioSet { + border: round #CCC; + } + """ + def __init__( self, *buttons: str | RadioButton,