temporarily disabled footer
This commit is contained in:
parent
9aece476a9
commit
08b0334ff1
3 changed files with 16 additions and 5 deletions
|
@ -10,7 +10,7 @@
|
|||
|
||||
<slot />
|
||||
|
||||
<Footer />
|
||||
<!--<Footer />-->
|
||||
</div>
|
||||
|
||||
<style>
|
||||
|
|
|
@ -108,11 +108,13 @@
|
|||
}
|
||||
|
||||
.c{
|
||||
top: -100px;
|
||||
top: -1000px;
|
||||
left: -1000px;
|
||||
position: absolute;
|
||||
}
|
||||
.j{
|
||||
top: -150px;
|
||||
top: -1500px;
|
||||
left: -1500px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import Globe from "../components/Globe.svelte";
|
||||
import IntroText from "../components/IntroText.svelte";
|
||||
import TalkingPointContainer from "../components/TalkingPointContainer.svelte";
|
||||
import MediaQuery from "svelte-media-query";
|
||||
import TalkingPointContent from "../components/TalkingPointContent.svelte";
|
||||
import TalkingPointName from "../components/TalkingPointName.svelte";
|
||||
import PartnerContainer from "../components/PartnerContainer.svelte";
|
||||
|
@ -15,8 +16,16 @@
|
|||
<div class="site">
|
||||
<div class="hero">
|
||||
<div class="container">
|
||||
<MediaQuery query="only screen and (max-device-width: 900px) and (orientation: portrait)" let:matches>
|
||||
{#if matches}
|
||||
<FemtoHeader />
|
||||
<Globe/>
|
||||
{:else}
|
||||
<Globe/>
|
||||
<FemtoHeader />
|
||||
{/if}
|
||||
</MediaQuery>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue