Skip to content

Commit

Permalink
node >= 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Hopelezz committed Aug 13, 2022
1 parent 7336b92 commit 46ddc72
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ pnpm-debug.log*

# macOS-specific files
.DS_Store
.vercel
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
"scss": "^0.2.4"
},
"engines": {
"node": ">=16"
"node": ">=18"
}
}
7 changes: 4 additions & 3 deletions src/components/blog/PostPreview.astro
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ const tag = tags.split(",")[0]; // returns the first tag

<style>
/*----------------Section--------------*/
/* defines card size */
article {
width: 500px;
height: 200px;
Expand All @@ -59,21 +58,21 @@ article {
margin: var(--size-5);
border: 1px solid var(--brand);
}

.card:hover {
box-shadow: var(--shadow-4);
background: var(--surface3);
transform: translateY(-5px);
}


a {
text-decoration: none;
}

li {
list-style: none;
}


/*------------Coffee Image-------------*/
.coffee{
width: 170px;
Expand All @@ -93,6 +92,7 @@ li {
.details h2 {
text-transform: uppercase;
}

.details span {
text-transform: capitalize;
font-size: var(--size-3);
Expand All @@ -111,6 +111,7 @@ li {
font-size: 12px;
text-decoration: none;
}

a:link {
text-decoration: none;
}
Expand Down

0 comments on commit 46ddc72

Please sign in to comment.