Skip to content

Commit

Permalink
fix: update v0.10.1 (fixing iframes for small screens)
Browse files Browse the repository at this point in the history
  • Loading branch information
TayzenDev committed Nov 4, 2024
1 parent c7ba7a5 commit 53bbb7f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ A demo is available at this URL: [Smallblog Demo](https://smallblog-demo.tayzen.
Create a new directory in your smallweb folder, add a `main.tsx` and paste this content in it:

```tsx
import { createSmallblog } from "jsr:@tayzendev/smallblog@0.10.0";
import { createSmallblog } from "jsr:@tayzendev/smallblog@0.10.1";

export default createSmallblog();
```
Expand Down Expand Up @@ -163,7 +163,7 @@ These new pages are accessible from the navbar (as you can see in the screenshot
Minimal `main.tsx` to quick-start a project (as shown above):

```tsx
import { createSmallblog } from "jsr:@tayzendev/smallblog@0.10.0";
import { createSmallblog } from "jsr:@tayzendev/smallblog@0.10.1";

export default createSmallblog();
```
Expand All @@ -172,7 +172,7 @@ A `main.tsx` with more parameters:

```tsx
import { html } from "hono/html";
import { createSmallblog } from "jsr:@tayzendev/smallblog@0.10.0";
import { createSmallblog } from "jsr:@tayzendev/smallblog@0.10.1";

const customBodyScript = await html`<script
defer
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tayzendev/smallblog",
"version": "0.10.0",
"version": "0.10.1",
"exports": "./mod.tsx",
"imports": {
"@deno/gfm": "jsr:@deno/gfm@^0.9.0",
Expand Down
1 change: 1 addition & 0 deletions templates/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@ export const style = html`
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
display: block;
margin: 1.5em auto;
max-width: 100%;
}
.markdown-body video {
Expand Down

0 comments on commit 53bbb7f

Please sign in to comment.