Skip to content

Commit

Permalink
#cele-25 Remove cross icon
Browse files Browse the repository at this point in the history
  • Loading branch information
vidhya-metacell committed May 17, 2024
1 parent bea9861 commit 59b9cda
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ const Header = ({
<Autocomplete
multiple
id="grouped-demo"
clearIcon={false}
options={allOptions}
ChipProps={{ deleteIcon: <IconButton sx={{ p: '0 !important', margin: '0 !important' }}><CloseIcon /></IconButton> }}
popupIcon={<CaretIcon />}
Expand Down Expand Up @@ -220,6 +221,7 @@ const Header = ({
multiple
className="secondary"
id="tags-standard"
clearIcon={false}
options={NeuronData}
getOptionLabel={(option) => option}
ChipProps={{ deleteIcon: <IconButton sx={{ p: '0 !important', margin: '0 !important' }}><CloseIcon /></IconButton> }}
Expand Down
10 changes: 6 additions & 4 deletions applications/visualizer/frontend/src/theme/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,9 @@ const theme = createTheme({

MuiAutocomplete: {
styleOverrides: {
input: {
height: 'auto'
},
inputRoot: {
gap: '0.5rem'
},
Expand Down Expand Up @@ -541,7 +544,7 @@ const theme = createTheme({
}
},
'& .MuiOutlinedInput-root': {
padding: '0 0.875rem',
padding: '0.5rem 0.875rem',
'& .MuiAutocomplete-input': {
padding: 0
}
Expand All @@ -557,7 +560,7 @@ const theme = createTheme({
maxWidth: "43.75rem",
},
paper: {
borderRadius: 12,
borderRadius: '8px',
maxWidth: "34.375rem",
'& h3': {
fontSize: '0.875rem',
Expand Down Expand Up @@ -881,8 +884,7 @@ const theme = createTheme({
}
},
root: {
// border: `0.0625rem ${gray100} solid`,
// boxShadow: "0 0 0.25rem rgba(0, 0, 0, 0.1)",
borderRadius: '8px',
"& .MuiOutlinedInput-notchedOutline": {
borderColor: gray100,
borderWidth: '0.0625rem',
Expand Down

0 comments on commit 59b9cda

Please sign in to comment.