Skip to content

Commit

Permalink
wip(front): remove extraneous div (#1216)
Browse files Browse the repository at this point in the history
Closes: #1216
  • Loading branch information
dgrebb committed Feb 9, 2024
1 parent 30c63ad commit eed87e2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions front/src/routes/(layouts)/Article.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
import './article.css';
</script>

<div class="article">
<article>
<slot name="header" />
<slot name="aside" />
<slot name="content" />
</article>
</div>
<article class="article">
<slot name="header" />
<slot name="aside" />
<slot name="content" />
</article>

0 comments on commit eed87e2

Please sign in to comment.