| 12345678910111213141516171819202122232425262728293031323334 |
- <script lang="ts">
- import AllInOneGraph from './AllInOneGraph.svelte';
- import PilotsByYearGraph from './YearGraph.svelte';
- //export let name: string;
- </script>
- <main>
- <h1>SDM visualisations</h1>
- <!--p>Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn how to build Svelte apps.</p-->
- <PilotsByYearGraph></PilotsByYearGraph>
- <AllInOneGraph></AllInOneGraph>
- </main>
- <style>
- main {
- text-align: center;
- padding: 1em;
- max-width: 240px;
- margin: 0 auto;
- }
- h1 {
- color: #ff3e00;
- text-transform: uppercase;
- font-size: 4em;
- font-weight: 100;
- }
- @media (min-width: 640px) {
- main {
- max-width: none;
- }
- }
- </style>
|