Adding menu icons
This commit is contained in:
parent
cfe6979c9c
commit
e754ce5f80
2 changed files with 10 additions and 3 deletions
|
|
@ -29,6 +29,8 @@ body {
|
|||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 0 6px 0 0;
|
||||
}
|
||||
|
||||
|
|
@ -46,6 +48,11 @@ tr {
|
|||
margin: 8px 0;
|
||||
}
|
||||
|
||||
tr:hover {
|
||||
color: var(--main-dark);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import * as React from 'react';
|
|||
import { useEffect } from 'react';
|
||||
import * as Bowser from 'bowser';
|
||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
||||
import { faCog } from '@fortawesome/free-solid-svg-icons';
|
||||
import { faExternalLinkAlt, faCog } from '@fortawesome/free-solid-svg-icons';
|
||||
import './App.css';
|
||||
|
||||
const updateDOM = (id, text) => {
|
||||
|
|
@ -62,8 +62,8 @@ const App = () => {
|
|||
<div className="header">
|
||||
<div className="logoImage" />
|
||||
<div className="menu">
|
||||
{/* <FontAwesomeIcon icon={['fal', 'coffee']} /> */}
|
||||
<FontAwesomeIcon icon={faCog} />
|
||||
<FontAwesomeIcon icon={faExternalLinkAlt} size="lg" color="#AAB7B8" />
|
||||
<FontAwesomeIcon icon={faCog} size="lg" color="#AAB7B8" />
|
||||
</div>
|
||||
</div>
|
||||
<table>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue