Skip to content

Commit 918c115

Browse files
committed
fix scroll to fix e2e
1 parent ce5c386 commit 918c115

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/remix-ide/src/app/ui/landing-page/landing-page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class LandingPage extends ViewPlugin {
3030
}
3131

3232
render () {
33-
return <div id='landingPageHomeContainer' className='remixui_homeContainer justify-content-between bg-light d-flex' data-id='landingPageHomeContainer'>
33+
return <div id='landingPageHomeContainer' className='remixui_homeContainer justify-content-between bg-light d-flex' data-id='landingPageHomeContainer' style={{ 'overflow-y': 'hidden'}}>
3434
<RemixUiHomeTab plugin={this} />
3535
</div>
3636
}

libs/remix-ui/panel/src/lib/plugins/panel.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ iframe {
6666
}
6767

6868
.plugItIn>div {
69-
overflow-y: hidden;
69+
overflow-y: scroll;
7070
overflow-x: hidden;
7171
height: 100%;
7272
width: 100%;

0 commit comments

Comments
 (0)