Skip to content

Commit eb294b1

Browse files
committed
revert android overlay app_bar
1 parent 12d1f4c commit eb294b1

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/AppBar.module.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
block-size: 64px;
33
flex-shrink: 0;
44
}
5-
/*show the header bar as an overlay over the video. (android)*/
6-
.overlay {
7-
block-size: 0px;
8-
}
5+
96
.bar > header {
107
position: absolute;
118
inset-inline: 0;

src/AppBar.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,7 @@ export const AppBar: FC<Props> = ({ children }) => {
6464
<>
6565
<div
6666
style={{ display: hidden ? "none" : "block" }}
67-
className={classNames(
68-
styles.bar,
69-
platform === "android" && styles.overlay,
70-
)}
67+
className={styles.bar}
7168
>
7269
<Header>
7370
<LeftNav>

0 commit comments

Comments
 (0)