Skip to content

Commit 7005692

Browse files
style(Menu): add cursor pointer
1 parent 1ed538a commit 7005692

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/components/Menu/style.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ export const Ul = styled.ul`
66
list-style: none;
77
display: flex;
88
justify-content: space-around;
9+
cursor: pointer;
910
`
1011

1112
export const Li = styled.li`
1213
color: ${({ theme }) => theme.primary};
1314
border-bottom: 1.5px solid transparent;
1415
transition: 0.3s;
1516
position: relative;
17+
cursor: pointer;
1618
1719
font-weight: 300;
1820
font-size: 30px;
@@ -33,13 +35,15 @@ export const Container = styled.ul`
3335
list-style: none;
3436
padding: 0;
3537
display: none;
38+
cursor: pointer;
3639
`
3740

3841
export const Content = styled.li`
3942
font-size: 18px;
4043
line-height: 32px;
4144
color: ${({ theme }) => theme.primary};
4245
padding: 6px 0;
46+
cursor: pointer;
4347
transition: 0.3s;
4448
&:hover {
4549
color: ${({ theme }) => theme.accentColor};

0 commit comments

Comments
 (0)