Skip to content

Commit cafcddc

Browse files
committed
Accidentally removed mobile nav hover effect
1 parent 4b15f7c commit cafcddc

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/index.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if there's any unexpected styling (esp. coloring), check node_modules\bootstrap\
1717

1818
/*#FFFFFF*/
1919
--whiteRGBA1: rgba(255,255,255,0);
20-
--whiteRGBA2: rgba(255,255,255,0);
20+
--whiteRGBA2: rgba(255,255,255,1);
2121
}
2222

2323
a:hover{
@@ -76,7 +76,7 @@ html, body, #root, #app, .full-height{
7676
color: var(--dullblue);
7777
background-color: var(--white);
7878
}
79-
.navigation ul {
79+
.navigation ul{
8080
list-style-type: none;
8181
float: right;
8282

@@ -93,11 +93,11 @@ html, body, #root, #app, .full-height{
9393

9494
border-bottom-style: solid;
9595
border-color: var(--dullblueRGBA1);
96-
transition: border-color 0.25s;
96+
transition: border-color 0.2s;
9797
}
9898
.navigation ul li a:hover{
9999
border-color: var(--dullblueRGBA2);
100-
transition: border-color 0.25s;
100+
transition: border-color 0.2s;
101101
}
102102

103103
.section{

src/nav-bar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class NavBar extends React.Component {
3232

3333
<ul className="flex-container">
3434
<li className="mobile-hide"><a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">MLH CODE OF CONDUCT</a></li>
35-
<li><a href="https://brickhack.io/gallery/">GALLERY</a></li>
35+
<li><a>GALLERY</a></li>
3636
</ul>
3737
</div>
3838
</div>

0 commit comments

Comments
 (0)