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

Commit 406cac8

Browse files
committed
Merge branch 'main' into release
2 parents 728b450 + 9275942 commit 406cac8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: app/_component/header/battery.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default function Battery() {
3737
}, []);
3838

3939
return (
40-
<div>
40+
<div className={css({ '@media (max-width: 750px)': { display: 'none' } })}>
4141
{level && (
4242
<>
4343
<span>{Math.round(level)}%</span>

Diff for: app/_component/header/clock.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function Clock() {
1515
}, []);
1616

1717
return (
18-
<span>
18+
<span className={css({ '@media (max-width: 800px)': { display: 'none' } })}>
1919
{time && (
2020
<>
2121
<span

0 commit comments

Comments
 (0)