Skip to content

Commit

Permalink
adding another article
Browse files Browse the repository at this point in the history
  • Loading branch information
grunkgrunk committed Aug 13, 2024
1 parent 1c083a2 commit 728b566
Show file tree
Hide file tree
Showing 24 changed files with 390 additions and 267 deletions.
49 changes: 48 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"histoire": "^0.16.1",
"image-transmutation": "^0.1.2",
"mdsvex": "^0.10.6",
"p5": "^1.10.0",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"reading-time": "^1.5.0",
Expand All @@ -49,6 +50,7 @@
"dependencies": {
"@fontsource/inter": "^4.5.15",
"@fontsource/merriweather": "^4.5.14",
"@fontsource/ubuntu-mono": "^4.5.11"
"@fontsource/ubuntu-mono": "^4.5.11",
"p5-svelte": "^3.1.2"
}
}
}
4 changes: 4 additions & 0 deletions src/lib/components/atoms/Card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
position: relative;
overflow: hidden;
width: 100%;
border-width: 1px;
border-style: solid;
border-color: var(--color--primary-tint);
display: flex;
flex-direction: row;
Expand All @@ -63,6 +66,7 @@
&:hover {
box-shadow: var(--card-shadow-hover);
transform: scale(1.01);
//border-width: 2px;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/atoms/Image.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</script>

{#if fileExtension === 'mp4'}
<video autoplay loop>
<video autoplay loop muted>
<source src={base + src} type="video/mp4" />
</video>
{:else}
Expand Down
3 changes: 2 additions & 1 deletion src/lib/components/molecules/BlogPostCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@
export let excerpt: string;
export let slug: string;
export let tags: string[] | undefined;
export let href: string | undefined;
export let showImage = true;
</script>

<Card
href={base + '/' + slug}
href={href ?? (base + '/' + slug)}
target="_self"
additionalClass="blog-post-card {!showImage || !coverImage ? 'no-image' : ''}"
>
Expand Down
40 changes: 0 additions & 40 deletions src/lib/components/molecules/SparklingHighlight.story.svelte

This file was deleted.

19 changes: 0 additions & 19 deletions src/lib/components/molecules/SparklingHighlight.svelte

This file was deleted.

168 changes: 0 additions & 168 deletions src/lib/components/molecules/ThemeToggle.svelte

This file was deleted.

Loading

0 comments on commit 728b566

Please sign in to comment.