toolbar buttons wip

This commit is contained in:
Aquaticholic
2022-01-28 04:44:06 +00:00
parent 9f4e0306b4
commit 91ae79a698
3 changed files with 5 additions and 2 deletions
@@ -32,6 +32,7 @@
color: white; color: white;
text-decoration: none; text-decoration: none;
font-size: 2rem; font-size: 2rem;
z-index: 1;
} }
.side_drawer a:hover, .side_drawer a:hover,
@@ -4,8 +4,8 @@ import { Link } from "react-router-dom";
const PagesList = props => { const PagesList = props => {
return ( return (
<ul> <ul>
<li><Link onClick={props.click} to="/Dashboard">Dashboard</Link></li> <button><Link onClick={props.click} to="/Dashboard">Dashboard</Link></button>
<li><Link onClick={props.click} to="/Input">Input</Link></li> <button><Link onClick={props.click} to="/Input">Input</Link></button>
</ul> </ul>
) )
} }
@@ -22,6 +22,7 @@
color: white; color: white;
text-decoration: none; text-decoration: none;
font-size: 2.0rem; font-size: 2.0rem;
height: 100%;
} }
.toolbar_spacer { .toolbar_spacer {
@@ -43,6 +44,7 @@
color: white; color: white;
text-decoration: none; text-decoration: none;
font-size: 1.5rem; font-size: 1.5rem;
height: 200%;
} }
.toolbar_items a:hover, .toolbar_items a:hover,