Skip to content

Commit 3fbd6f0

Browse files
authored
Hide empty Footer correctly (#3842)
1 parent 8f0b979 commit 3fbd6f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/gitbook/src/components/Footer/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function Footer(props: { context: GitBookSiteContext }) {
2929
className={tcls(
3030
'border-tint-subtle border-t',
3131
// If the footer only contains a mode toggle, we only show it on smaller screens
32-
mobileOnly ? '@7xl:hidden' : null
32+
mobileOnly ? 'xl:hidden' : null
3333
)}
3434
>
3535
<div className="motion-safe:transition-[padding] motion-safe:duration-300 lg:chat-open:pr-80 xl:chat-open:pr-96">

0 commit comments

Comments
 (0)