Skip to content

Commit

Permalink
WIP: z-index problem poc
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyfromundefined committed Dec 21, 2023
1 parent 4568376 commit bda9a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/plugin-basic-ui/src/components/AppScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const AppScreen: React.FC<AppScreenProps> = ({

const hasAppBar = !!appBar;

const zIndexBase = (activity?.zIndex ?? 0) * 5;
const zIndexBase = (activity?.isTop ? 1 : 0) * 5;

let zIndexDim: number;
let zIndexPaper: number;
Expand Down

0 comments on commit bda9a67

Please sign in to comment.