Skip to content

Commit

Permalink
Merge pull request #29 from will-moore/cube_chunks_fix
Browse files Browse the repository at this point in the history
Swap chunkX and chunkY for cube lines
  • Loading branch information
will-moore committed May 22, 2023
2 parents 5f410d5 + 3533421 commit fe75b52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/JsonValidator/MultiscaleArrays/ZarrArray/Cube3D.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@
rgba(70, 70, 70, 0.7) 0px,
rgba(70, 70, 70, 0.7) 1px,
transparent 1px,
transparent var(--chunkX)
transparent var(--chunkY)
),
repeating-linear-gradient(
90deg,
rgba(70, 70, 70, 0.7) 0px,
rgba(70, 70, 70, 0.7) 1px,
transparent 1px,
transparent var(--chunkY)
transparent var(--chunkX)
),
linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}
Expand Down Expand Up @@ -162,7 +162,7 @@
rgba(70, 70, 70, 0.7) 0px,
rgba(70, 70, 70, 0.7) 1px,
transparent 1px,
transparent var(--chunkX)
transparent var(--chunkY)
),
repeating-linear-gradient(
90deg,
Expand Down

0 comments on commit fe75b52

Please sign in to comment.