attempting to fix page style
This commit is contained in:
parent
64b2ef5b95
commit
96d4e0a3a5
1 changed files with 23 additions and 1 deletions
24
pages/hi.vue
24
pages/hi.vue
|
|
@ -1,4 +1,13 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
useSeoMeta({
|
||||||
|
title: "hi from SXSW!",
|
||||||
|
ogTitle: "hi from SXSW!",
|
||||||
|
description: "Landing page for visitors who scanned my business card",
|
||||||
|
ogDescription: "Landing page for visitors who scanned my business card",
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<main>
|
<main>
|
||||||
|
|
@ -44,7 +53,13 @@
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
main{
|
main{
|
||||||
text-align: center
|
text-align: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 2rem;
|
||||||
|
margin-top: 3.5rem;
|
||||||
|
gap: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pfp{
|
.pfp{
|
||||||
|
|
@ -67,4 +82,11 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
hr {
|
||||||
|
width: 100%;
|
||||||
|
border: 1px dashed var(--accent-dark);
|
||||||
|
max-width: var(--max-width);
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue