improvements
This commit is contained in:
parent
9a94c08e6c
commit
f7f199f9da
1 changed files with 10 additions and 4 deletions
|
|
@ -91,7 +91,7 @@ var { data } = await useAsyncData('home', () => queryContent('blog').sort({id:-1
|
|||
<hr/>
|
||||
<!-- featured projects, link to all? -->
|
||||
<h1>Featured Projects</h1>
|
||||
<div class="container">
|
||||
<div class="featured-container">
|
||||
<ProjectCard
|
||||
src="https://img.itch.zone/aW1nLzE2Mjg0ODg2LnBuZw==/315x250%23c/6FRKz0.png"
|
||||
href="https://teamstingray.dev/arcane-raiders"
|
||||
|
|
@ -122,7 +122,7 @@ var { data } = await useAsyncData('home', () => queryContent('blog').sort({id:-1
|
|||
<a class="no-margins" href="/blog-index">View All</a>
|
||||
<!-- <p>Coming Soon!</p> -->
|
||||
|
||||
<div class="container">
|
||||
<div class="featured-container">
|
||||
|
||||
<TextCard v-for="post in data"
|
||||
:key="post.id"
|
||||
|
|
@ -146,9 +146,15 @@ var { data } = await useAsyncData('home', () => queryContent('blog').sort({id:-1
|
|||
<style scoped>
|
||||
.container {
|
||||
display: flex;
|
||||
width: 100%
|
||||
|
||||
}
|
||||
|
||||
.featured-container{
|
||||
display: flex;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.featured-container{
|
||||
display: flex;
|
||||
margin-left: 20%;
|
||||
|
|
@ -199,13 +205,13 @@ var { data } = await useAsyncData('home', () => queryContent('blog').sort({id:-1
|
|||
margin-right: 0%;
|
||||
}
|
||||
.aboutme{
|
||||
visibility: collapse;
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.pfp {
|
||||
width: auto;
|
||||
width: 100%;
|
||||
aspect-ratio: 1/1;
|
||||
border-radius: 100%;
|
||||
box-shadow:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue