File size: 869 Bytes
e7d9af9
bee47ce
 
e7d9af9
 
 
bee47ce
e7d9af9
bee47ce
e7d9af9
bee47ce
 
e7d9af9
 
 
bee47ce
 
 
e7d9af9
bee47ce
 
 
 
 
 
 
 
 
e7d9af9
bee47ce
 
 
 
 
 
 
 
 
 
 
 
 
e7d9af9
bee47ce
 
 
 
e7d9af9
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<script lang="ts">
  import TrafficChart from './lib/TrafficChart.svelte'
  import RegionsMap from './lib/RegionsMap.svelte'
</script>

<main>
  <h1>GCP Gateway Status</h1>
  <p>
    The current status of the GCP HF Gateway rollout. 
  </p>
  <TrafficChart />
  <RegionsMap />
</main>

<style>
  :global(html) {
    overflow-x: hidden;
    width: 100%;
  }

  :global(body) {
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  main {
    padding: 2rem;
    text-align: center;
    min-height: 100vh;
    background-color: #1a1a1a;
    color: #e0e0e0;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }
  
  h1 {
    margin-bottom: 2rem;
    color: #e0e0e0;
  }
</style>