Skip to content

Commit eb63a85

Browse files
authored
Merge pull request #15 from oslabs-beta/brian
Changed scrollbar color to gray and removed clickable cursor for logo and title in the nav bar
2 parents 15f39ff + c3ed6f3 commit eb63a85

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/src/components/top/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ const NavBar: React.FC = () => {
145145
return (
146146
<div>
147147
<nav className="main-navbar" style={{ backgroundColor: '#151515' }}>
148-
<Link to="/" style={{ textDecoration: 'none' }}>
148+
<Link to="/" style={{ textDecoration: 'none', cursor: 'default' }}>
149149
<div className="main-logo">
150150
<Avatar src={logo}></Avatar>
151151
<h1 style={{ color: 'white' }}>ReacType</h1>

app/src/public/styles/style.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ span.material-symbols-outlined {
151151
.column.left::-webkit-scrollbar-thumb {
152152
transition: 0.3s ease all;
153153
border-color: transparent;
154-
background-color: #354e9c;
154+
background-color: gray;
155155
border-radius: 8px;
156156
z-index: 40;
157157
}
@@ -220,7 +220,7 @@ span.material-symbols-outlined {
220220
#HTMLItemsTopHalf::-webkit-scrollbar-thumb {
221221
transition: 0.3s ease all;
222222
border-color: transparent;
223-
background-color: #354e9c;
223+
background-color: gray;
224224
border-radius: 8px;
225225
z-index: 40;
226226
}
@@ -539,7 +539,7 @@ BOTTOM PANEL
539539
.tab-content::-webkit-scrollbar-thumb {
540540
transition: 0.3s ease all;
541541
border-color: transparent;
542-
background-color: #354e9c;
542+
background-color: gray;
543543
border-radius: 8px;
544544
z-index: 40;
545545
}
@@ -552,7 +552,7 @@ BOTTOM PANEL
552552
.tab-content::-webkit-scrollbar-thumb {
553553
transition: 0.3s ease all;
554554
border-color: transparent;
555-
background-color: #354e9c;
555+
background-color: gray;
556556
border-radius: 8px;
557557
z-index: 40;
558558
}

0 commit comments

Comments
 (0)