Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Sep 12, 2023
1 parent d6be3e1 commit 7d1c6d3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
6 changes: 6 additions & 0 deletions taxonium_component/src/components/ColorSettingModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ const modalStyle = {
borderRadius: "8px",
padding: "20px",
maxWidth: "400px",

},
overlay: {
backgroundColor: "rgba(100, 100, 100, 0.3)",
zIndex: 1000,

}
};

const ColorSettingModal = ({ isOpen, setIsOpen, color, setColor, title }) => {
Expand Down
2 changes: 1 addition & 1 deletion taxonium_component/src/components/DeckButtons.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const DeckButtons = ({
position: "absolute",
right: "0em",
bottom: "0em",
zIndex: 10,
zIndex: 2,
pointerEvents: "none",
}}
className="flex flex-col items-end"
Expand Down
8 changes: 7 additions & 1 deletion taxonium_component/src/components/DeckSettingsModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ const settingsModalStyle = {
borderRadius: "8px",
padding: "20px",
maxWidth: "700px",
},
}
,
overlay: {
backgroundColor: "rgba(100, 100, 100, 0.3)",
zIndex: 1000,

}
};

const prettifyMutationTypes = {
Expand Down
2 changes: 1 addition & 1 deletion taxonium_component/src/hooks/useLayers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ const useLayers = ({
onHover: (info) => setHoverInfo(info),
modelMatrix: modelMatrix,
updateTriggers: {
getFillColor: [detailed_data, getNodeColorField],
getFillColor: [detailed_data, getNodeColorField,colorHook],
getPosition: [xType],
},
};
Expand Down

0 comments on commit 7d1c6d3

Please sign in to comment.