Skip to content
Snippets Groups Projects
Unverified Commit 1d60635e authored by Sean Tsai's avatar Sean Tsai Committed by GitHub
Browse files

Remove double scrollbar as the screen is big enough (#1385)

parent a84f009a
No related branches found
No related tags found
No related merge requests found
...@@ -206,7 +206,7 @@ export default class FixedSizeList extends PureComponent { ...@@ -206,7 +206,7 @@ export default class FixedSizeList extends PureComponent {
style={{ style={{
height, height,
width, width,
overflow: 'auto', overflow: 'hidden auto',
...style, ...style,
}} }}
> >
......
...@@ -31,7 +31,9 @@ export const styles = { ...@@ -31,7 +31,9 @@ export const styles = {
}, },
page: { page: {
flex: 1, flex: 1,
minHeight: 700, // ensure we can scroll on small screens '@media (max-height: 550px)': {
minHeight: 700, // ensure we can scroll on small screens
},
paddingTop: 8, // height of the titlebar paddingTop: 8, // height of the titlebar
[`@media (min-width: ${tokens.breakpoint_small})`]: { [`@media (min-width: ${tokens.breakpoint_small})`]: {
paddingTop: 36, paddingTop: 36,
......
---
category: Bugfix
authors: [aleetsaiya]
---
Remove double scrollbar while the viewport is big enough and remove the horizontal scrollbar under the transaction table.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment