Skip to content

Commit

Permalink
pr feedback addressed
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-heppner-ibigroup committed Jul 3, 2023
1 parent d96744a commit e9cafd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/trip-form/src/MetroModeSelector/SubSettingsPane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const SettingsPanel = styled.fieldset`
export const SubSettingsCheckbox = styled(CheckboxSelector)<{
flexbox: boolean;
}>`
display: ${props => (props.flexbox ? "flex" : "block")};
display: ${props => (props.flexbox ? "flex" : "inherit")};
margin-left: 4px;
input {
vertical-align: middle;
Expand Down Expand Up @@ -88,7 +88,7 @@ const ModeSettingRenderer = ({
"icon" in setting ? (
<FormLabelIconWrapper>
<div role="none">{setting.icon}</div>
<div> {label}</div>
<div>{label}</div>
</FormLabelIconWrapper>
) : (
label
Expand Down

0 comments on commit e9cafd5

Please sign in to comment.