File tree Expand file tree Collapse file tree
apps/landing/src/components/Header Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -156,6 +156,7 @@ export default function MobileMenu() {
156156 </ MobileMenuProvider >
157157 < Box
158158 borderBottom = "1px solid $border"
159+ cursor = "pointer"
159160 onClick = { ( ) => router . push ( `/test-case` ) }
160161 px = "16px"
161162 py = "20px"
@@ -164,6 +165,7 @@ export default function MobileMenu() {
164165 </ Box >
165166 < Box
166167 borderBottom = "1px solid $border"
168+ cursor = "pointer"
167169 onClick = { ( ) => router . push ( `/team` ) }
168170 px = "16px"
169171 py = "20px"
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export default function MobileMenuButton({
1616 < Button
1717 bg = "transparent"
1818 border = "none"
19+ cursor = "pointer"
1920 onClick = { ( ) => {
2021 router . push ( `?menuOpen=${ menuOpen === 'true' ? 'false' : 'true' } ` )
2122 } }
Original file line number Diff line number Diff line change @@ -34,7 +34,11 @@ export const MobileMenuItem = ({ children }: { children: React.ReactNode }) => {
3434 setIsOpen ( ( prev ) => ! prev )
3535 }
3636
37- return < Box onClick = { handleToggleOpen } > { children } </ Box >
37+ return (
38+ < Box cursor = "pointer" onClick = { handleToggleOpen } >
39+ { children }
40+ </ Box >
41+ )
3842}
3943
4044export const MobileMenuSubItem = ( {
@@ -61,6 +65,7 @@ export const MobileMenuItemBox = ({
6165 alignItems = "center"
6266 bg = { selected ? '$menuActive' : 'transparent' }
6367 borderRadius = "6px"
68+ cursor = "pointer"
6469 gap = "10px"
6570 onClick = { onClick }
6671 opacity = { selected ? 1 : 0.8 }
You can’t perform that action at this time.
0 commit comments