Possibly closes #105
This commit is contained in:
parent
513cedc25a
commit
eb51fa1514
5 changed files with 20 additions and 2 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
15
sass/partials/_egress.scss
Normal file
15
sass/partials/_egress.scss
Normal file
|
@ -0,0 +1,15 @@
|
|||
.egress {
|
||||
bottom: 10rem; right: 1rem;
|
||||
|
||||
background-color: $white;
|
||||
border: 1px solid $gray;
|
||||
font-size: 1rem;
|
||||
padding: 1rem;
|
||||
position: fixed;
|
||||
transition: opacity 0.2s;
|
||||
z-index: 12;
|
||||
|
||||
&:hover {
|
||||
opacity: 0.3;
|
||||
}
|
||||
}
|
|
@ -10,6 +10,7 @@
|
|||
|
||||
"partials/animation",
|
||||
"partials/ecosystem",
|
||||
"partials/egress",
|
||||
"partials/email-subscribe",
|
||||
"partials/feature-links",
|
||||
"partials/flash",
|
||||
|
|
|
@ -17,6 +17,8 @@ const emailSubscribe = local("/views/partials/email-subscribe");
|
|||
// E X P O R T
|
||||
|
||||
module.exports = exports = state => html`
|
||||
<a href="//lbry.io" title="Escape the techno scene" class="egress">Escape to<br/>← LBRY.io</a>
|
||||
|
||||
<section class="email-subscribe-container">
|
||||
${emailSubscribe()}
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue