fix landing page

pull/1/head
yann300 6 years ago
parent d1322927d9
commit 14a1956144
  1. 10
      src/app/ui/landing-page/landing-page.js

@ -18,8 +18,12 @@ var css = csjs`
font-family : "Lucida Console", Monaco, monospace; font-family : "Lucida Console", Monaco, monospace;
} }
.logo { .logo {
position: absolute; position : absolute;
opacity: 0.3; opacity : 0.3;
z-index : 0;
}
.section {
z-index : 10;
} }
` `
@ -36,7 +40,7 @@ class LandingPage {
` `
for (var i = 0; i < this.sections.length; i++) { for (var i = 0; i < this.sections.length; i++) {
totalLook.appendChild(yo` totalLook.appendChild(yo`
<div> <div class="${css.section}" >
${this.sections[i].render()} ${this.sections[i].render()}
</div> </div>
`) `)

Loading…
Cancel
Save