fix(pitch-deck): lower watermark z-index so FABs stay clickable
Some checks failed
CI / go-lint (pull_request) Failing after 13s
CI / python-lint (pull_request) Failing after 12s
CI / nodejs-lint (pull_request) Failing after 6s
CI / test-go-consent (pull_request) Failing after 10s
CI / test-python-voice (pull_request) Failing after 12s
CI / test-bqas (pull_request) Failing after 11s
CI / Deploy (pull_request) Has been skipped
Some checks failed
CI / go-lint (pull_request) Failing after 13s
CI / python-lint (pull_request) Failing after 12s
CI / nodejs-lint (pull_request) Failing after 6s
CI / test-go-consent (pull_request) Failing after 10s
CI / test-python-voice (pull_request) Failing after 12s
CI / test-bqas (pull_request) Failing after 11s
CI / Deploy (pull_request) Has been skipped
Previously the watermark was z-50, same as the ChatFAB and NavigationFAB, which caused it to visually obscure them despite pointer-events-none. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,7 @@ export default function Watermark({ text }: WatermarkProps) {
|
||||
|
||||
return (
|
||||
<div
|
||||
className="fixed inset-0 pointer-events-none z-50 overflow-hidden select-none"
|
||||
className="fixed inset-0 pointer-events-none z-10 overflow-hidden select-none"
|
||||
aria-hidden="true"
|
||||
>
|
||||
<div className="absolute inset-0 flex items-center justify-center">
|
||||
|
||||
Reference in New Issue
Block a user