Skip to content

Commit

Permalink
[cli] fix releases frontend styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenVoich committed Mar 27, 2024
1 parent 8ab63e8 commit b8ee0a2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions cli-releases/frontend/src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,11 @@
margin: 0;
font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

code {
padding: 3px;
border-radius: 3px;
overflow-x: auto;
background: #eceeee;
}
</style>
6 changes: 5 additions & 1 deletion cli-releases/frontend/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{release.hash}
</div>
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
<p>{@html markdownToHtml(release.relseaseNotes)}</p>
<p class="release-notes">{@html markdownToHtml(release.relseaseNotes)}</p>
</div>
{/each}
</div>
Expand All @@ -56,4 +56,8 @@
font-size: 0.8rem;
margin-bottom: 0.5rem;
}
.release-notes {
line-height: 1.55;
}
</style>

0 comments on commit b8ee0a2

Please sign in to comment.