i am gaming

This commit is contained in:
Tabby 2025-04-05 19:10:15 +11:00
parent dfe3a8c1fa
commit 5a950e031e
3 changed files with 22 additions and 3 deletions

View file

@ -7,6 +7,7 @@
<style> <style>
.socials { .socials {
display: flex; display: flex;
flex-wrap: wrap;
align-items: center; align-items: center;
gap: 1rem; gap: 1rem;

View file

@ -1,6 +1,7 @@
<template> <template>
<main> <main>
<a href="/"><-- Return Home</a> <!-- <a href="/"><-- Return Home</a> -->
<BigButton text="<<< Return Home" href="/"/>
<h1>Tom's Blog</h1> <h1>Tom's Blog</h1>
<p class="no-margin" v-if="qSupplied">Selected Tag: <strong>{{query}}</strong> <a v-if="qSupplied" href="blog-index">(Clear Search)</a></p> <p class="no-margin" v-if="qSupplied">Selected Tag: <strong>{{query}}</strong> <a v-if="qSupplied" href="blog-index">(Clear Search)</a></p>

View file

@ -10,7 +10,8 @@
<template> <template>
<main> <main>
<a href="javascript:window.history.back();"><-- Go Back</a> <!-- <a href="javascript:window.history.back();"><-- Go Back</a> -->
<BigButton text="<<< Return to blog listing" href="/blog-index"/>
<ContentDoc v-slot="{ doc }"> <ContentDoc v-slot="{ doc }">
<article class="post"> <article class="post">
<h1>{{ doc.title }}</h1> <h1>{{ doc.title }}</h1>
@ -30,7 +31,23 @@
<style> <style>
.post{ .post{
width: 80%; width: 50%;
}
/* i wonder if this will cause issues */
img{
width: 100%;
}
@media (max-width: 1000px){
.post{
width: 80%;
}
img{
width: 100%;
}
} }
main { main {