Skip to content

Commit 3b2432a

Browse files
committed
Update AppEditorMenu styles
1 parent b7c24eb commit 3b2432a

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

llmstack/client/src/components/apps/AppEditorMenu.jsx

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,14 @@ export default function AppEditorMenu(props) {
5353
</FormControl>
5454
) : (
5555
<List
56-
sx={{ width: "100%", maxWidth: 360, bgcolor: "background.paper" }}
56+
sx={{
57+
width: "100%",
58+
maxWidth: 360,
59+
bgcolor: "background.paper",
60+
"& > .Mui-selected": {
61+
borderBottom: "1px solid #046fda66",
62+
},
63+
}}
5764
component="nav"
5865
ref={tourRef}
5966
>
@@ -73,7 +80,15 @@ export default function AppEditorMenu(props) {
7380
<ListItemIcon>{item.icon}</ListItemIcon>
7481
<ListItemText primary={item.name} />
7582
</ListItemButton>,
76-
<List component="div" key={`${item.name}-children`}>
83+
<List
84+
component="div"
85+
key={`${item.name}-children`}
86+
sx={{
87+
"& > .Mui-selected": {
88+
borderBottom: "1px solid #046fda66",
89+
},
90+
}}
91+
>
7792
{item.children.map((child) => (
7893
<ListItemButton
7994
key={child.name}

0 commit comments

Comments
 (0)