Skip to content
This repository was archived by the owner on Dec 11, 2019. It is now read-only.

Commit e9b0cac

Browse files
authored
Hide HelpfulHints if window height is too small (#7409)
Fix #7404 Auditors: @luixxiul
1 parent c0d1f84 commit e9b0cac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/renderer/components/preferences/helpfulHints.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ const styles = StyleSheet.create({
4242
helpfulHints: {
4343
cursor: 'default',
4444
padding: '20px 0 0',
45-
overflowY: 'auto',
45+
visibility: 'hidden',
4646

47-
'@media (min-height: 620px)': {
47+
'@media (min-height: 680px)': {
4848
position: 'absolute',
4949
bottom: '0',
50-
overflowY: 'none'
50+
visibility: 'visible'
5151
}
5252
},
5353

0 commit comments

Comments
 (0)