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 d89d19202b
3 changed files with 24 additions and 0 deletions

View File

@ -662,6 +662,24 @@ html body #main-outlet {
}
}
.become-editor-link {
display: none;
a {
color: var(--primary-high);
}
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