Skip to content

Commit

Permalink
fix(overmind-devtools-client): replace overflowY 'scroll' with 'auto'
Browse files Browse the repository at this point in the history
  • Loading branch information
henri-hulski committed Sep 8, 2023
1 parent c75045c commit a9ff06d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { colors } from '../../theme'
export const wrapper = css({
padding: '1rem',
height: '100%',
overflowY: 'scroll',
overflowY: 'auto',
boxSizing: 'border-box',
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const resultWrapper = css({
top: '100%',
minWidth: '100%',
maxHeight: '75vh',
overflowY: 'scroll',
overflowY: 'auto',
left: 0,
backgroundColor: colors.border,
borderBottomLeftRadius: 3,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const separator = css({
export const wrapper = css({
padding: '1rem',
height: '100%',
overflowY: 'scroll',
overflowY: 'auto',
boxSizing: 'border-box',
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { css } from 'emotion'
import { colors } from '../../theme'

export const outerWrapper = css({
overflowY: 'scroll',
overflowY: 'auto',
boxSizing: 'border-box',
margin: '1rem',
height: '100%',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const wrapper = css({
padding: '2rem',
height: '100%',
boxSizing: 'border-box',
overflowY: 'scroll',
overflowY: 'auto',
maxHeight: '100vh',
})

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { css } from 'emotion'

export const wrapper = css({
overflowY: 'scroll',
overflowY: 'auto',
height: '100vh',
})
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const wrapper = css({
padding: '2rem 1rem',
height: '100vh',
boxSizing: 'border-box',
overflowY: 'scroll',
overflowY: 'auto',
})

export const panels = css({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const wrapper = css({
padding: '2rem',
height: '100vh',
boxSizing: 'border-box',
overflowY: 'scroll',
overflowY: 'auto',
fontSize: 14,
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const wrapper = css({
padding: '2rem',
height: '100vh',
boxSizing: 'border-box',
overflowY: 'scroll',
overflowY: 'auto',
})

export const edit = css({
Expand Down

0 comments on commit a9ff06d

Please sign in to comment.