fix: Fixed issue where dropdowns in preferences would not be visible
This commit is contained in:
@@ -133,6 +133,9 @@ const Appearance: FunctionComponent<Props> = ({ application }) => {
|
|||||||
value={autoLightTheme}
|
value={autoLightTheme}
|
||||||
onChange={changeAutoLightTheme}
|
onChange={changeAutoLightTheme}
|
||||||
disabled={!useDeviceSettings}
|
disabled={!useDeviceSettings}
|
||||||
|
classNameOverride={{
|
||||||
|
popover: '!z-modal',
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -148,6 +151,9 @@ const Appearance: FunctionComponent<Props> = ({ application }) => {
|
|||||||
value={autoDarkTheme}
|
value={autoDarkTheme}
|
||||||
onChange={changeAutoDarkTheme}
|
onChange={changeAutoDarkTheme}
|
||||||
disabled={!useDeviceSettings}
|
disabled={!useDeviceSettings}
|
||||||
|
classNameOverride={{
|
||||||
|
popover: '!z-modal',
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -99,6 +99,9 @@ const EditorDefaults = ({ application }: Props) => {
|
|||||||
items={fontSizeDropdownOptions}
|
items={fontSizeDropdownOptions}
|
||||||
value={fontSize}
|
value={fontSize}
|
||||||
onChange={handleFontSizeChange}
|
onChange={handleFontSizeChange}
|
||||||
|
classNameOverride={{
|
||||||
|
popover: '!z-modal',
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -113,6 +116,9 @@ const EditorDefaults = ({ application }: Props) => {
|
|||||||
items={lineHeightDropdownOptions}
|
items={lineHeightDropdownOptions}
|
||||||
value={lineHeight}
|
value={lineHeight}
|
||||||
onChange={handleLineHeightChange}
|
onChange={handleLineHeightChange}
|
||||||
|
classNameOverride={{
|
||||||
|
popover: '!z-modal',
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -124,6 +124,9 @@ const EmailBackups = ({ application }: Props) => {
|
|||||||
items={emailFrequencyOptions}
|
items={emailFrequencyOptions}
|
||||||
value={emailFrequency}
|
value={emailFrequency}
|
||||||
onChange={handleEmailFrequencyChange}
|
onChange={handleEmailFrequencyChange}
|
||||||
|
classNameOverride={{
|
||||||
|
popover: '!z-modal',
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user