Skip to content

Commit fbf36c4

Browse files
authored
Merge pull request #566 from rishabdev2997/main
feat: Implemented border when hover
2 parents 7b7bad5 + b6b0803 commit fbf36c4

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

src/components/Sidebar.module.css

+13-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
.title {
3131
font-size: var(--text-reduced);
3232
padding-top: 20px;
33-
text-wrap: pretty;
33+
overflow-wrap: break-word;
3434
}
3535

3636
.toggleButton {
@@ -50,6 +50,7 @@
5050
flex-grow: 1;
5151
position: relative;
5252
overflow-y: auto;
53+
padding-top: 1rem;
5354
& ul li h4 {
5455
text-wrap: pretty;
5556
}
@@ -110,20 +111,28 @@
110111
}
111112

112113
.tocItem {
114+
margin-bottom: 1rem;
115+
113116
& a {
114117
font-family: var(--font);
115118
text-overflow: ellipsis;
116119
color: var(--processing-blue-dark);
120+
border-left: 4px solid transparent;
121+
display: flex;
122+
align-items: center;
123+
padding: 3px 0.75rem;
124+
transition: color 0.3s, border-left-color 0.3s;
125+
117126
&:hover {
118127
color: var(--processing-blue-mid);
128+
border-left-color: var(--processing-blue-mid);
119129
}
130+
120131
}
121132

122133
& h4 {
123134
font-size: var(--text-regular);
124135
color: inherit;
125-
&:hover {
126-
color: inherit;
127-
}
136+
margin: 0;
128137
}
129138
}

0 commit comments

Comments
 (0)