diff --git a/src/App.css b/src/App.css index f7cb2a1..8585800 100644 --- a/src/App.css +++ b/src/App.css @@ -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; } diff --git a/src/App.jsx b/src/App.jsx index 8c6b6aa..8a5130c 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -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 = () => {