Skip to content

Commit

Permalink
Fixing chip styles
Browse files Browse the repository at this point in the history
  • Loading branch information
jackson authored and jackson committed Jul 22, 2024
1 parent 85a1173 commit 38eab9b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/components/FlightFlagger/FlightFlaggerHighlightChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface IFlightHighlightChip {
}

const HighlightIcon = () => {
return <CustomHighlightIcon style={{marginLeft: '4px', width: '25px'}} />
return <CustomHighlightIcon style={{marginLeft: '4px', minWidth: '25px'}} />
}

export const FlightHighlightChip = ({text}: IFlightHighlightChip) => {
Expand All @@ -21,8 +21,12 @@ export const FlightHighlightChip = ({text}: IFlightHighlightChip) => {
color: '#111224',
margin: '2px 2px 2px 0px',
borderRadius: 0,
minHeight: '32px',
height: 'auto',
'> .MuiChip-label': {
paddingLeft: '5px',
paddingTop: '2px',
paddingBottom: '2px',
overflow: 'visible',
textOverflow: 'inherit',
whiteSpace: 'normal',
Expand Down
2 changes: 1 addition & 1 deletion src/components/FlightFlagger/icon-highlight-pax.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 38eab9b

Please sign in to comment.