attempting to fix page style

This commit is contained in:
Clevertop 2024-09-23 21:03:43 +10:00
parent 64b2ef5b95
commit 96d4e0a3a5

View file

@ -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>