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

Commit eb918d8

Browse files
committed
fix: remove title on smaller screens
1 parent e0a939b commit eb918d8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/components/header.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ const useStyles = createStyles((theme) => ({
2121
},
2222

2323
title: {
24+
[`@media (max-width: ${theme.breakpoints.xs}px)`]: {
25+
display: 'none',
26+
},
2427
fontFamily: 'Ninja Naruto Regular, Inter',
2528
lineHeight: '56px',
2629
fontWeight: 300,

0 commit comments

Comments
 (0)