Skip to content

Commit

Permalink
match chip sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
GihanAyesh committed Oct 18, 2023
1 parent 5019163 commit 84ecf8c
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1615,7 +1615,7 @@ export default function Environments() {
{pendingDeployment.displayName}
</div>
}
style={{ backgroundColor: '#FFBF00' }}
style={{ backgroundColor: '#FFBF00', width: '100px' }}
/>
<Button
className={classes.button1}
Expand Down Expand Up @@ -1724,7 +1724,7 @@ export default function Environments() {
<div>
<Chip
label={approvedDeployment.displayName}
style={{ backgroundColor: '#15B8CF' }}
style={{ backgroundColor: '#15B8CF', width: '100px' }}
/>
<Button
className={classes.button1}
Expand Down Expand Up @@ -2135,7 +2135,8 @@ export default function Environments() {
<div key={o3.displayName}>
<Chip
label={o3.displayName}
style={{ backgroundColor: '#15B8CF' }}
style={{ backgroundColor: '#15B8CF',
width: '100px'}}
/>
</div>
))}
Expand Down Expand Up @@ -2167,7 +2168,8 @@ export default function Environments() {
{o3.displayName}
</div>
}
style={{ backgroundColor: '#FFBF00' }}
style={{ backgroundColor: '#FFBF00',
width: '100px'}}
/>
</div>
))}
Expand Down

0 comments on commit 84ecf8c

Please sign in to comment.