aboutsummaryrefslogtreecommitdiff
path: root/web/pw-frontend/src/App.svelte
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2021-12-25 20:28:10 +0100
committerIlion Beyst <ilion.beyst@gmail.com>2021-12-25 20:28:10 +0100
commit003c551e7320912d468b00905da234ad262b5446 (patch)
treebcdc9da9c05790674265237ffb2a6fb12411c2ea /web/pw-frontend/src/App.svelte
parent92a13bac9289fd00a6fa2c70129490fa22ef0661 (diff)
downloadplanetwars.dev-003c551e7320912d468b00905da234ad262b5446.tar.xz
planetwars.dev-003c551e7320912d468b00905da234ad262b5446.zip
implement basic MatchBrowser component
Diffstat (limited to 'web/pw-frontend/src/App.svelte')
-rw-r--r--web/pw-frontend/src/App.svelte37
1 files changed, 2 insertions, 35 deletions
diff --git a/web/pw-frontend/src/App.svelte b/web/pw-frontend/src/App.svelte
index 614cf6f..468b925 100644
--- a/web/pw-frontend/src/App.svelte
+++ b/web/pw-frontend/src/App.svelte
@@ -1,11 +1,9 @@
<script lang="ts">
- import Visualizer from './lib/Visualizer.svelte';
+import MatchBrowser from './lib/MatchBrowser.svelte';
</script>
<main>
- <!-- <img src={logo} alt="Svelte Logo" /> -->
- <!-- <h1>Hello Typescript!</h1> -->
- <Visualizer />
+ <MatchBrowser />
</main>
<style>
@@ -13,35 +11,4 @@
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
-
- img {
- height: 16rem;
- width: 16rem;
- }
-
- h1 {
- color: #ff3e00;
- text-transform: uppercase;
- font-size: 4rem;
- font-weight: 100;
- line-height: 1.1;
- margin: 2rem auto;
- max-width: 14rem;
- }
-
- p {
- max-width: 14rem;
- margin: 1rem auto;
- line-height: 1.35;
- }
-
- @media (min-width: 480px) {
- h1 {
- max-width: none;
- }
-
- p {
- max-width: none;
- }
- }
</style>