We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33ac8d4 commit b7c24ebCopy full SHA for b7c24eb
llmstack/client/src/components/apps/AppTemplatesContainer.jsx
@@ -292,6 +292,11 @@ const AppTemplatesContainer = () => {
292
key={category}
293
selected={selectedCategory === category}
294
onClick={() => setSelectedCategory(category)}
295
+ sx={{
296
+ "&.Mui-selected": {
297
+ borderBottom: "1px solid #046fda66",
298
+ },
299
+ }}
300
>
301
<ListItemIcon sx={{ minWidth: "40px" }}>
302
<AppTemplateCategoryIcon category={category} />
@@ -318,7 +323,7 @@ const AppTemplatesContainer = () => {
318
323
mt: isMobile ? 0 : 4,
319
324
padding: "10px 0 10px 10px",
320
325
mr: 1,
321
- maxHeight: "600px",
326
+ height: "600px",
322
327
overflowY: "scroll",
328
backgroundColor: "#edeff7",
329
}}
0 commit comments