Skip to content

Commit

Permalink
Update height
Browse files Browse the repository at this point in the history
  • Loading branch information
keller-mark committed Aug 10, 2020
1 parent d665f1b commit d1efb6a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"type": "git",
"url": "https://github.com/keller-mark/higlass-zarr-datafetchers"
},
"main": "build-pkg/index.min.js",
"main": "build-pkg/index.esm.js",
"unpkg": "build-pkg/index.umd.js",
"author": "Mark Keller",
"license": "MIT",
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions src/demo/Demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import { HiGlassComponent } from 'higlass';
import viewconfig from './viewconfig.js';

export default function demo() {

return (
<div>
<HiGlassComponent
viewConfig={viewconfig}
zoomFixed={false}
/>
</div>
<HiGlassComponent
viewConfig={viewconfig}
zoomFixed={false}
options={{
sizeMode: 'bounded'
}}
/>
);
}
3 changes: 3 additions & 0 deletions src/demo/index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.higlass {
height: 100vh;
}

0 comments on commit d1efb6a

Please sign in to comment.