Skip to content

Commit

Permalink
Fix: cursor color
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 committed Jul 20, 2024
1 parent 5953cca commit 4006530
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
run: |
rm -rf patches/*
jq 'del(.patchedDependencies)' "package.json" > temp.json && mv temp.json "package.json"
cat package.json
echo $(sed '/if (storybook) {/,/}/d' src/store/index.ts) > src/store/index.ts
echo $(sed '/@dreamworld\/addon-redux/d' .storybook/main.ts) > .storybook/main.ts
Expand Down
2 changes: 1 addition & 1 deletion src/components/workspace/cursor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const Cursor = () => {
<div id={ids.cursor}>
<style>{styles}</style>
<Cursor
className="absolute pointer-events-none transform translate-x-[-50%] translate-y-[-50%] fill-white"
className="absolute pointer-events-none transform translate-x-[-50%] translate-y-[-50%] fill-white text-black"
style={{
left: `${cursorX}px`,
top: `${cursorY}px`,
Expand Down

0 comments on commit 4006530

Please sign in to comment.