Skip to content

Commit

Permalink
[FIX] Demo now in proper bounds on page instead of covering entire sc…
Browse files Browse the repository at this point in the history
…reen
  • Loading branch information
RaymondDashWu committed Jan 12, 2021
1 parent be3cdcb commit 0c60f3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion examples/kepler-integration/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ const GlobalStyle = styled.div`
font-weight: 400;
font-size: 0.875em;
line-height: 1.71429;
width: 100%;
height: 100%;
*,
*:before,
Expand Down Expand Up @@ -82,7 +84,6 @@ const GlobalStyle = styled.div`
const WindowSize = styled.div`
display: flex;
flex-direction: column;
position: absolute;
left: 0;
top: 0;
height: 100%;
Expand Down
4 changes: 1 addition & 3 deletions website/src/pages/kepler-example.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ import store from '../../../examples/kepler-integration/src/store';
import App from '../../../examples/kepler-integration/src/app';

export default function KeplerShowcase() {
return ( // Tried all positions but didn't work
<div style={{}}>
return (
<Provider store={store}>
<App />
</Provider>
</div>
)
}

0 comments on commit 0c60f3a

Please sign in to comment.