Skip to content

Commit

Permalink
feat: update border color of the search that in cloud
Browse files Browse the repository at this point in the history
Signed-off-by: Amit Amrutiya <[email protected]>
  • Loading branch information
amitamrutiya committed Oct 11, 2024
1 parent 935efaf commit c9731a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/custom/StyledSearchBar/style.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { styled } from '@mui/material';
import { InputAdornment, OutlinedInput } from '../../base';
import { white } from '../../theme';

export const StyledSearchInput = styled(OutlinedInput)(({ style }) => ({
width: '100%',
Expand All @@ -8,11 +9,12 @@ export const StyledSearchInput = styled(OutlinedInput)(({ style }) => ({
paddingLeft: '0.25rem'
},
display: 'flex',
backgroundColor: white.light,
...style
}));

export const InputAdornmentEnd = styled(InputAdornment)(({ theme }) => ({
borderLeft: `1px solid ${theme.palette.border.normal}`,
borderLeft: `1px solid ${theme.palette.background.tertiary}`,
height: '30px',
paddingLeft: '10px',
'@media (max-width: 590px)': {
Expand Down

0 comments on commit c9731a4

Please sign in to comment.