Skip to content

Commit

Permalink
remove flex-wrap property (#1737)
Browse files Browse the repository at this point in the history
  • Loading branch information
Onokaev authored May 17, 2022
1 parent b273371 commit 983f7a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/views/main-header/ThemeSetting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export const ThemeSetting: React.FunctionComponent = () => {
SelectedTheme: selectedTheme.key.replace('-', ' ').toSentenceCase()
});
};
return(

return (
<div>
<ActionButton
ariaLabel={translateMessage('change theme')}
Expand All @@ -52,6 +53,7 @@ export const ThemeSetting: React.FunctionComponent = () => {
<ChoiceGroup
label='Pick one theme'
defaultSelectedKey={appTheme}
styles={{ flexContainer: { flexWrap: 'nowrap' }} }
options={[
{
key: AppTheme.Light,
Expand Down

0 comments on commit 983f7a1

Please sign in to comment.