Skip to content

Commit

Permalink
chore: import css
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Oct 19, 2023
1 parent d3344e8 commit ee8f6dc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/DatalayerApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import { createRoot } from 'react-dom/client';
import DatalayerJupyterLabHeadless from './DatalayerJupyterLabHeadless';

import "./../style/index.css";

const div = document.createElement('div');
document.body.appendChild(div);
const root = createRoot(div);
Expand Down
2 changes: 1 addition & 1 deletion src/tabs/AboutTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const AboutTab = (props: Props): JSX.Element => {
<Box>
<Text>Datalayer provides features to other Datalayer packages. It also contains base application classes and configuration inherited by other projects.</Text>
</Box>
<Box mt={3}>
<Box mt={3} style={{height: 350}}>
{!egg ?
<img src="https://assets.datalayer.tech/releases/datalayer-0.2.0-omalley.png" onClick={e => setEgg(true)}/>
:
Expand Down
6 changes: 5 additions & 1 deletion style/base.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
body {
overflow-y: visible;
}

.dla-Container {
overflow-y: visible;
overflow-y: visible;
}

.jp-Launcher-content {
Expand Down

0 comments on commit ee8f6dc

Please sign in to comment.