Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
fix: resolve bad overlap on tsci dev overlay during export (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
sahilahluwalia authored Jul 1, 2024
1 parent cf9bc06 commit de4d65c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const GenericExportDialog = ({
onClickExport: () => any
}) => {
return (
<Dialog open={open} onClose={onClose} className="relative z-50">
<Dialog open={open} onClose={onClose} className="relative z-[101]">
<div className="fixed inset-0 bg-black/30" aria-hidden="true" />
<div className="fixed inset-0 flex w-screen items-center justify-center p-4">
<Dialog.Panel className="w-full max-w-lg rounded bg-white p-6 border border-[rgba(0,0,0,0.3)]">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const GerberExportDialog = ({
onClickExport: () => any
}) => {
return (
<Dialog open={open} onClose={onClose} className="relative z-50">
<Dialog open={open} onClose={onClose} className="relative z-[101]">
<div className="fixed inset-0 bg-black/30" aria-hidden="true" />
<div className="fixed inset-0 flex w-screen items-center justify-center p-4">
<Dialog.Panel className="w-full max-w-lg rounded bg-white p-6 border border-[rgba(0,0,0,0.3)]">
Expand Down

0 comments on commit de4d65c

Please sign in to comment.