chore: tweak header styles

This commit is contained in:
Kieran 2023-04-18 12:52:58 +01:00
parent 3d8269b674
commit 6fa641e33e
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
3 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,6 @@ header {
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 4px 12px;
}
.header-actions .avatar {

View File

@ -134,7 +134,7 @@ export default function Layout() {
return (
<div className={pageClass}>
{!shouldHideHeader && (
<header>
<header className="main-content mt5">
<div className="logo" onClick={() => navigate("/")}>
<h1>Snort</h1>
{currentSubscription && (

View File

@ -466,6 +466,10 @@ body.scroll-lock {
margin-top: 10px;
}
.mt5 {
margin-top: 5px;
}
.ml5 {
margin-left: 5px;
}