Added links to menu
This commit is contained in:
parent
e754ce5f80
commit
595ffc459d
2 changed files with 18 additions and 4 deletions
14
src/App.css
14
src/App.css
|
|
@ -1,9 +1,9 @@
|
|||
:root {
|
||||
--main: #943EC5;
|
||||
--main-dark: #8537B1;
|
||||
--text: #212121;
|
||||
--background: #fff;
|
||||
--scrollbar: #ccc;
|
||||
--icon: #AAB7B8;
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
@ -15,6 +15,14 @@ body {
|
|||
margin-right: 2px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--icon);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var( --main);
|
||||
}
|
||||
|
||||
.header {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
|
@ -31,6 +39,8 @@ body {
|
|||
.menu {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 52px;
|
||||
margin: 0 6px 0 0;
|
||||
}
|
||||
|
||||
|
|
@ -49,7 +59,7 @@ tr {
|
|||
}
|
||||
|
||||
tr:hover {
|
||||
color: var(--main-dark);
|
||||
color: var(--main);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,8 +62,12 @@ const App = () => {
|
|||
<div className="header">
|
||||
<div className="logoImage" />
|
||||
<div className="menu">
|
||||
<FontAwesomeIcon icon={faExternalLinkAlt} size="lg" color="#AAB7B8" />
|
||||
<FontAwesomeIcon icon={faCog} size="lg" color="#AAB7B8" />
|
||||
<a href="url" target="_blank">
|
||||
<FontAwesomeIcon icon={faExternalLinkAlt} size="lg" />
|
||||
</a>
|
||||
<a href="url" target="_blank">
|
||||
<FontAwesomeIcon icon={faCog} size="lg" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<table>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue