Skip to content

Commit

Permalink
fix wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
codegod100 committed Oct 29, 2024
1 parent eb504da commit 6450264
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
});
</script>

<main class="container">
<main class="container wrap">
<div class="mb-6">
<div class="is-size-1">nandi's blog</div>
<div>
Expand All @@ -59,3 +59,10 @@
</div>
{/each}
</main>

<style>
.wrap {
/* max-width: 50%; */
overflow-wrap: break-word;
}
</style>

0 comments on commit 6450264

Please sign in to comment.