@datawheel/data-explorer 0.2.11 → 0.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/main.js +4 -4
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -4587,7 +4587,7 @@ function SideBar(props) {
4587
4587
  id: "dex-sidebar",
4588
4588
  py: "md",
4589
4589
  sx: (t2) => ({
4590
- height: "calc(100vh - 50px)",
4590
+ height: "100%",
4591
4591
  backgroundColor: t2.colorScheme === "dark" ? t2.colors.dark[8] : t2.colors.gray[1],
4592
4592
  boxShadow: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
4593
4593
  maxWidth: expanded ? 300 : 54,
@@ -4597,7 +4597,7 @@ function SideBar(props) {
4597
4597
  [t2.fn.smallerThan("md")]: {
4598
4598
  position: "absolute",
4599
4599
  width: expanded ? 300 : 0,
4600
- height: expanded ? "calc(100vh - 50px)" : 0,
4600
+ height: expanded ? "100%" : 0,
4601
4601
  bottom: expanded ? "unset" : t2.spacing.md,
4602
4602
  left: expanded ? "unset" : t2.spacing.md,
4603
4603
  overflow: "hidden",
@@ -5084,7 +5084,7 @@ var useStyles4 = createStyles((theme, params) => ({
5084
5084
  display: "flex",
5085
5085
  flexFlow: "column nowrap",
5086
5086
  position: "relative",
5087
- height: "calc(100% - 70px)",
5087
+ height: "100%",
5088
5088
  [theme.fn.largerThan("md")]: {
5089
5089
  flexDirection: "row"
5090
5090
  // height: params.height,
@@ -5093,7 +5093,7 @@ var useStyles4 = createStyles((theme, params) => ({
5093
5093
  },
5094
5094
  flexCol: {
5095
5095
  flex: "1 1 auto",
5096
- height: "calc(100vh - 70px)",
5096
+ height: "100%",
5097
5097
  [theme.fn.largerThan("md")]: {
5098
5098
  width: 0,
5099
5099
  paddingLeft: 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datawheel/data-explorer",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./dist/main.js"