aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-10-26 12:10:47 +0100
committerLeonardo Bishop <me@leonardobishop.com>2024-10-26 12:10:47 +0100
commit5e4d41d1dfeaaeca731b3c5496377214ec6e557f (patch)
tree6b1c5359f17e1e30c85fdb7d611d1c5bbb7843e9 /src/App.vue
bootstrap project
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..d05208d
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,47 @@
+<script setup lang="ts">
+import HelloWorld from './components/HelloWorld.vue'
+import TheWelcome from './components/TheWelcome.vue'
+</script>
+
+<template>
+ <header>
+ <img alt="Vue logo" class="logo" src="./assets/logo.svg" width="125" height="125" />
+
+ <div class="wrapper">
+ <HelloWorld msg="You did it!" />
+ </div>
+ </header>
+
+ <main>
+ <TheWelcome />
+ </main>
+</template>
+
+<style scoped>
+header {
+ line-height: 1.5;
+}
+
+.logo {
+ display: block;
+ margin: 0 auto 2rem;
+}
+
+@media (min-width: 1024px) {
+ header {
+ display: flex;
+ place-items: center;
+ padding-right: calc(var(--section-gap) / 2);
+ }
+
+ .logo {
+ margin: 0 2rem 0 0;
+ }
+
+ header .wrapper {
+ display: flex;
+ place-items: flex-start;
+ flex-wrap: wrap;
+ }
+}
+</style>