Link to become an editor on published pages

This commit is contained in:
Tony Grosinger 2024-03-02 20:21:46 -08:00
parent e361a8d018
commit 4bf0d0589d
3 changed files with 27 additions and 0 deletions

View File

@ -662,6 +662,27 @@ html body #main-outlet {
}
}
.become-editor-link {
display: none;
margin: -40px auto 30px auto;
max-width: 1000px;
a {
color: var(--primary-high);
text-decoration: underline;
}
a:visited {
color: var(--primary-high);
}
}
.published-page {
.become-editor-link {
display: block;
}
}
// published page additions
.published-page-header {
background-color: unset;

View File

@ -1,3 +1,9 @@
<div class="become-editor-link">
<a href="https://orcas.community/editor">
Become an editor
</a>
</div>
<footer class="orcashub-footer">
<div class="outer-container">
<div class="inner-container">

View File