Skip to content

Commit

Permalink
remove code-pane stuff temporarily again (#2318)
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz authored May 8, 2024
1 parent cb0b7e8 commit 2077cdb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/routes/Onboarding/CodeEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ export default function CodeEditor() {
<div className="fixed grid justify-end items-center inset-0 z-50 pointer-events-none">
<div
className="fixed inset-0 bg-black opacity-50 dark:opacity-80 pointer-events-none"
style={{ clipPath: useBackdropHighlight('code-pane') }}
style={
{
/*clipPath: useBackdropHighlight('code-pane')*/
}
}
></div>
<div
className={
Expand Down
6 changes: 5 additions & 1 deletion src/routes/Onboarding/InteractiveNumbers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ export default function InteractiveNumbers() {
<div className="fixed grid justify-end items-center inset-0 z-50 pointer-events-none">
<div
className="fixed inset-0 bg-black opacity-50 pointer-events-none"
style={{ clipPath: useBackdropHighlight('code-pane') }}
style={
{
/*clipPath: useBackdropHighlight('code-pane')*/
}
}
></div>
<div
className={
Expand Down
6 changes: 5 additions & 1 deletion src/routes/Onboarding/ParametricModeling.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ export default function ParametricModeling() {
<div className="fixed grid justify-end items-center inset-0 z-50 pointer-events-none">
<div
className="fixed inset-0 bg-black dark:bg-black-80 opacity-50 pointer-events-none"
style={{ clipPath: useBackdropHighlight('code-pane') }}
style={
{
/*clipPath: useBackdropHighlight('code-pane')*/
}
}
></div>
<div
className={
Expand Down

0 comments on commit 2077cdb

Please sign in to comment.