Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrubinger committed Jan 13, 2023
1 parent 11e805e commit dc83af1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/Card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
return url.includes('https://');
}
let starsRatingMaskWidth = !!ratings ? (ratings / 5) * 100 : 0;
let starsRatingMaskWidth = !!ratings ? (ratings / 5) * 100 : 0;
</script>

<div class="cardroot" class:debug={dev}>
Expand Down
6 changes: 4 additions & 2 deletions src/routes/og/editor/form.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</div>
<label>
Title:
<textarea rows=4 class="cancel-drag" placeholder="<title>" bind:value={data.title}></textarea>
<textarea rows="4" class="cancel-drag" placeholder="<title>" bind:value={data.title} />
</label>
<label>
Image:
Expand Down Expand Up @@ -60,7 +60,9 @@
</label>

<div class="links">
<a href={url} target="_blank" rel="noreferrer" style="align-self: flex-start;">open og image ⤴️</a>
<a href={url} target="_blank" rel="noreferrer" style="align-self: flex-start;"
>open og image ⤴️</a
>
</div>

{#if loading}<div class="loading">loading</div>{/if}
Expand Down

1 comment on commit dc83af1

@vercel
Copy link

@vercel vercel bot commented on dc83af1 Jan 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.