@nualang/nualang-ui-components 0.1.1323 → 0.1.1326
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,7 +9,6 @@ const CardContainer = styled(Card)(({
|
|
|
9
9
|
theme
|
|
10
10
|
}) => ({
|
|
11
11
|
textAlign: "left",
|
|
12
|
-
color: theme.palette.text.secondary,
|
|
13
12
|
maxWidth: 600,
|
|
14
13
|
minWidth: 320,
|
|
15
14
|
display: "flex",
|
|
@@ -109,7 +108,8 @@ const CardInfoSection = styled(Box)(({
|
|
|
109
108
|
[theme.breakpoints.down("sm")]: {
|
|
110
109
|
marginBottom: 0
|
|
111
110
|
},
|
|
112
|
-
marginBottom: theme.spacing(2)
|
|
111
|
+
marginBottom: theme.spacing(2),
|
|
112
|
+
color: theme.palette.text.secondary
|
|
113
113
|
}));
|
|
114
114
|
const CardInfoSectionItem = styled(Typography)(() => ({
|
|
115
115
|
display: "flex",
|
|
@@ -154,7 +154,8 @@ export default function BottomBar({
|
|
|
154
154
|
},
|
|
155
155
|
disableUnderline: true,
|
|
156
156
|
multiline: true,
|
|
157
|
-
|
|
157
|
+
minRows: isChallengeBot ? 3 : 1,
|
|
158
|
+
maxRows: 3,
|
|
158
159
|
autoComplete: autoComplete,
|
|
159
160
|
inputRef: activeRef,
|
|
160
161
|
onClick: handleSelectCurrentInput,
|
|
@@ -108,7 +108,7 @@ export default function AppBreadcrumbs(props) {
|
|
|
108
108
|
} = props;
|
|
109
109
|
routes = appRoutes;
|
|
110
110
|
return /*#__PURE__*/_jsx(Paper, {
|
|
111
|
-
elevation:
|
|
111
|
+
elevation: 1,
|
|
112
112
|
square: true,
|
|
113
113
|
className: classes.paper,
|
|
114
114
|
children: /*#__PURE__*/_jsx(Breadcrumbs, {})
|