svelte-testing/src/routes/__layout.svelte
DutchEllie 7fb627855b
All checks were successful
continuous-integration/drone/push Build is passing
First design is in!
2022-07-01 21:30:29 +02:00

18 lines
548 B
Svelte

<script>
import '../app.css';
import Header from '../components/header.svelte'
</script>
<div class="bg-gradient-to-tr from-[#070F1A] to-[#0D234C] w-screen h-screen">
<!-- Header -->
<Header/>
<slot />
</div>
<!-- background-image: linear-gradient(to right top, #051937, #1a325b, #304d82, #466aab, #5d88d6);
https://mycolor.space/gradient?ori=to+right+top&hex=%23051937&hex2=%235D88D6&sub=1
-->
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,300;8..144,400;8..144,500&display=swap');
</style>