Skip to content

Commit

Permalink
fix(watermark): watermark causes a blank bar (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
HelKim authored Feb 24, 2021
1 parent c6f9b0d commit 66fc1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/web/useWatermark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function useWatermark(appendEl: Ref<HTMLElement | null> = ref(document.bo
const div = document.createElement('div');
div.id = id;
div.style.pointerEvents = 'none';
div.style.top = '3px';
div.style.top = '0px';
div.style.left = '0px';
div.style.position = 'absolute';
div.style.zIndex = '100000';
Expand Down

0 comments on commit 66fc1b7

Please sign in to comment.