Skip to content

Commit 0319c9c

Browse files
committed
refactor: 네비게이션 바 css 수정
1 parent 769f34a commit 0319c9c

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

src/styles/NavBar.module.css

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44
font-size: 1.3rem;
55
}
66

7+
.username a {
8+
color: inherit;
9+
text-decoration: none;
10+
}
11+
12+
.username a:hover {
13+
color: #FF6D6A;
14+
}
15+
716
.logo {
817
width: 100%;
918
height: auto;
@@ -30,3 +39,38 @@ li {
3039
font-weight: 600;
3140
font-size: 1.3rem;
3241
}
42+
43+
header {
44+
background-color: #f8f9fa;
45+
padding: 1rem;
46+
border-bottom: 1px solid #dee2e6;
47+
height: 3rem;
48+
}
49+
50+
nav ul {
51+
list-style: none;
52+
display: flex;
53+
padding: 0;
54+
margin: 0;
55+
}
56+
57+
nav li {
58+
margin-right: 1rem;
59+
}
60+
61+
nav li:last-child {
62+
margin-left: auto;
63+
}
64+
65+
.logo {
66+
height: 40px;
67+
}
68+
69+
.username {
70+
font-weight: bold;
71+
}
72+
73+
.navItem {
74+
display: flex;
75+
align-items: center;
76+
}

0 commit comments

Comments
 (0)