@etsoo/materialui 1.1.77 → 1.1.78
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.
- package/lib/SearchBar.js +1 -6
- package/package.json +1 -1
- package/src/SearchBar.tsx +2 -5
package/lib/SearchBar.js
CHANGED
|
@@ -224,12 +224,7 @@ export function SearchBar(props) {
|
|
|
224
224
|
if (form)
|
|
225
225
|
state.form = form;
|
|
226
226
|
} },
|
|
227
|
-
React.createElement(Stack, { ref: dimensions[0][0], className: "SearchBarContainer", justifyContent: "center", alignItems: "center", direction: "row", spacing: 1, width: "100%", sx: {
|
|
228
|
-
scrollbarWidth: 0,
|
|
229
|
-
"-ms-overflow-style": "none",
|
|
230
|
-
"&::-webkit-scrollbar": {
|
|
231
|
-
display: "none"
|
|
232
|
-
},
|
|
227
|
+
React.createElement(Stack, { ref: dimensions[0][0], className: "SearchBarContainer", justifyContent: "center", alignItems: "center", direction: "row", spacing: 1, width: "100%", overflow: "hidden", paddingTop: "6px", sx: {
|
|
233
228
|
"& > :not(style)": {
|
|
234
229
|
flexBasis: "auto",
|
|
235
230
|
flexGrow: 0,
|
package/package.json
CHANGED
package/src/SearchBar.tsx
CHANGED
|
@@ -313,12 +313,9 @@ export function SearchBar(props: SearchBarProps) {
|
|
|
313
313
|
direction="row"
|
|
314
314
|
spacing={1}
|
|
315
315
|
width="100%"
|
|
316
|
+
overflow="hidden"
|
|
317
|
+
paddingTop="6px"
|
|
316
318
|
sx={{
|
|
317
|
-
scrollbarWidth: 0,
|
|
318
|
-
"-ms-overflow-style": "none",
|
|
319
|
-
"&::-webkit-scrollbar": {
|
|
320
|
-
display: "none"
|
|
321
|
-
},
|
|
322
319
|
"& > :not(style)": {
|
|
323
320
|
flexBasis: "auto",
|
|
324
321
|
flexGrow: 0,
|