File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,6 @@ button:hover {
6666 background-color : var (--button-hover-bg );
6767 border-color : var (--button-hover-border );
6868 cursor : pointer;
69- transform : translateY (-1px );
70- color : var (--link-color );
7169}
7270
7371table {
Original file line number Diff line number Diff line change @@ -35,11 +35,12 @@ function addNavbarLinks() {
3535 } ) ;
3636 } ;
3737 button . onmouseover = ( ) => {
38- button . style . color = 'orange ' ;
38+ button . style . backgroundColor = '#404040 ' ;
3939 button . style . cursor = 'pointer' ;
4040 } ;
4141 button . onmouseout = ( ) => {
42- button . style . color = 'white' ;
42+ button . style . backgroundColor = '#373737' ;
43+ button . style . color = '#fff' ;
4344 } ;
4445 button . style . display = 'flex' ;
4546 button . style . alignItems = 'center' ;
You can’t perform that action at this time.
0 commit comments