Skip to content

Commit

Permalink
Fix heading sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakycrow committed Oct 18, 2024
1 parent 31cc1bc commit 0c55ccf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ the approach to more scifi topics and how those intertwine with modern culture i
It's a great book that deals a lot with complex topics but keeps them very grounded and easy to follow. A great read that I think
everyone should read.

[![The Mountain in the Sea cover](https://www.raynayler.net/uploads/1/3/2/3/13236557/mountain-paperback_orig.jpg)](https://www.raynayler.net/the-mountain-in-the-sea.html)
![The Mountain in the Sea cover](https://www.raynayler.net/uploads/1/3/2/3/13236557/mountain-paperback_orig.jpg)
2 changes: 0 additions & 2 deletions _posts/2024-10-15-creating-a-queue-for-video-processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ series_key: "video-streaming-devlog"
series_pos: 1
summary: "Using Rust and Postgres, we'll create a queue system for our video processing pipeline"
---
## intro

In our [previous post](https://sneakycrow.dev/blog/2024-10-13-creating-a-small-video-streaming-service)
we created a function that can process a video into a stream, and some routes for serving those
static files. The problem with doing this within the API is it can take up a lot of resources.
Expand Down
8 changes: 4 additions & 4 deletions src/lib/components/post/Heading.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@
tabindex="0"
>
{#if depth === 1}
<h1 class="text-xl font-bold my-4" {id}>
<h1 class="text-3xl font-bold" {id}>
<slot />
</h1>
{:else if depth === 2}
<h2 class="text-xl font-bold my-4" {id}>
<h2 class="text-2xl font-bold" {id}>
<slot />
</h2>
{:else if depth === 3}
<h3 class="text-lg font-bold my-4" {id}>
<h3 class="text-xl font-bold" {id}>
<slot />
</h3>
{:else if depth === 4}
<h4 class="font-bold my-4" {id}>
<h4 class="text-lg font-bold" {id}>
<slot />
</h4>
{:else if depth === 5}
Expand Down

0 comments on commit 0c55ccf

Please sign in to comment.