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 />
|
<slot />
|
||||||
|
|
||||||
<Footer />
|
<!--<Footer />-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -108,11 +108,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.c{
|
.c{
|
||||||
top: -100px;
|
top: -1000px;
|
||||||
|
left: -1000px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
.j{
|
.j{
|
||||||
top: -150px;
|
top: -1500px;
|
||||||
|
left: -1500px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
import Globe from "../components/Globe.svelte";
|
import Globe from "../components/Globe.svelte";
|
||||||
import IntroText from "../components/IntroText.svelte";
|
import IntroText from "../components/IntroText.svelte";
|
||||||
import TalkingPointContainer from "../components/TalkingPointContainer.svelte";
|
import TalkingPointContainer from "../components/TalkingPointContainer.svelte";
|
||||||
|
import MediaQuery from "svelte-media-query";
|
||||||
import TalkingPointContent from "../components/TalkingPointContent.svelte";
|
import TalkingPointContent from "../components/TalkingPointContent.svelte";
|
||||||
import TalkingPointName from "../components/TalkingPointName.svelte";
|
import TalkingPointName from "../components/TalkingPointName.svelte";
|
||||||
import PartnerContainer from "../components/PartnerContainer.svelte";
|
import PartnerContainer from "../components/PartnerContainer.svelte";
|
||||||
|
@ -15,8 +16,16 @@
|
||||||
<div class="site">
|
<div class="site">
|
||||||
<div class="hero">
|
<div class="hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<Globe/>
|
<MediaQuery query="only screen and (max-device-width: 900px) and (orientation: portrait)" let:matches>
|
||||||
<FemtoHeader />
|
{#if matches}
|
||||||
|
<FemtoHeader />
|
||||||
|
<Globe/>
|
||||||
|
{:else}
|
||||||
|
<Globe/>
|
||||||
|
<FemtoHeader />
|
||||||
|
{/if}
|
||||||
|
</MediaQuery>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue