From decdc857be1b8928e27ec29f9307bee6ab683a07 Mon Sep 17 00:00:00 2001 From: Elijah Ahianyo Date: Mon, 22 Jul 2024 17:56:34 +0000 Subject: [PATCH] `rx.list` Dont set/hardcode `list_style_position` css prop (#3695) --- reflex/components/radix/themes/layout/list.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/reflex/components/radix/themes/layout/list.py b/reflex/components/radix/themes/layout/list.py index 31c3ed7b3..fb77b223d 100644 --- a/reflex/components/radix/themes/layout/list.py +++ b/reflex/components/radix/themes/layout/list.py @@ -70,7 +70,6 @@ class BaseList(Component): children = [Foreach.create(items, ListItem.create)] else: children = [ListItem.create(item) for item in items] # type: ignore - props["list_style_position"] = "outside" props["direction"] = "column" style = props.setdefault("style", {}) style["list_style_type"] = list_style_type @@ -86,7 +85,6 @@ class BaseList(Component): """ return { "direction": "column", - "list_style_position": "inside", }