Fix cache titles and move feedback link
This commit is contained in:
@@ -108,7 +108,7 @@ body {
|
||||
grid-column: 1 / -1;
|
||||
grid-row: 2 / 3;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.brand {
|
||||
@@ -130,6 +130,7 @@ body {
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
flex-wrap: wrap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header-actions a {
|
||||
@@ -170,6 +171,10 @@ body {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.header-actions .header-cta--left {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.signed-in {
|
||||
font-size: 12px;
|
||||
text-transform: uppercase;
|
||||
|
||||
@@ -46,10 +46,10 @@ export default function HeaderActions() {
|
||||
|
||||
return (
|
||||
<div className="header-actions">
|
||||
<a className="header-cta header-cta--left" href="/feedback">Send feedback</a>
|
||||
<a href="/">Requests</a>
|
||||
<a href="/how-it-works">How it works</a>
|
||||
<a href="/profile">My profile</a>
|
||||
<a className="header-cta" href="/feedback">Send feedback</a>
|
||||
{role === 'admin' && <a href="/admin">Settings</a>}
|
||||
<button type="button" className="header-link" onClick={signOut}>
|
||||
Sign out
|
||||
|
||||
Reference in New Issue
Block a user