Skip to content

Commit 2ee21a9

Browse files
committed
LocationPicker: additional css fixes
1 parent 6925ea9 commit 2ee21a9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/controls/locationPicker/LocationPicker.module.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
}
77

88
.pickerItemContainer {
9-
display: -webkit-box;
10-
display: -ms-flexbox;
9+
display: flex;
1110
border-style: solid;
1211
border-color: "[theme: themePrimary, default: #0078d7]";
1312
border-radius: 22px;

src/controls/locationPicker/LocationPicker.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ export class LocationPicker extends React.Component<ILocationPickerProps, ILocat
5757
const { label } = this.props;
5858

5959
return (
60-
<>
60+
<div>
6161
{label ? <Text>{label}</Text> : null}
6262
{this.getMainContent()}
63-
</>
63+
</div>
6464
);
6565
}
6666

0 commit comments

Comments
 (0)