Skip to content

Commit 4006530

Browse files
committed
Fix: cursor color
1 parent 5953cca commit 4006530

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
run: |
4444
rm -rf patches/*
4545
jq 'del(.patchedDependencies)' "package.json" > temp.json && mv temp.json "package.json"
46+
cat package.json
4647
echo $(sed '/if (storybook) {/,/}/d' src/store/index.ts) > src/store/index.ts
4748
echo $(sed '/@dreamworld\/addon-redux/d' .storybook/main.ts) > .storybook/main.ts
4849

src/components/workspace/cursor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const Cursor = () => {
5656
<div id={ids.cursor}>
5757
<style>{styles}</style>
5858
<Cursor
59-
className="absolute pointer-events-none transform translate-x-[-50%] translate-y-[-50%] fill-white"
59+
className="absolute pointer-events-none transform translate-x-[-50%] translate-y-[-50%] fill-white text-black"
6060
style={{
6161
left: `${cursorX}px`,
6262
top: `${cursorY}px`,

0 commit comments

Comments
 (0)