mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-28 07:48:11 +08:00
* toast test * modify webpack build to allow for global CSS; use CSS modules to scope component styling * remove heatmap * add label to index resets * swapping out buttons for blueprint * adding constants to globals * swapping out blueprint buttons * title position, sidebar improvements * sidebar styles * adding toasts for validation errors * zebra section trial * integrating blueprint, switching buttons over, breaking out scatter * clean up console
8 lines
274 B
JavaScript
8 lines
274 B
JavaScript
// jshint esversion: 6
|
|
export const margin = { top: 40, right: 5, bottom: 20, left: 60 };
|
|
export const width = 340;
|
|
export const height = 340 - margin.top - margin.bottom;
|
|
export const innerHeight = height - 2;
|
|
|
|
export const devicePixelRatio = window.devicePixelRatio || 1;
|