Add margin to the feedback button

This commit is contained in:
Jade Ellis 2024-09-10 14:27:27 +01:00
parent d3f0110f93
commit 27c9be5e70
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -51,7 +51,7 @@
<span class="site-name">Jade Ellis</span>
</a>
<button on:click={sendFeedback}>Report a bug</button>
<button on:click={sendFeedback} class="feedback-button">Report a bug</button>
</div>
{#each Object.entries(links) as [title, inner_links]}
@ -130,4 +130,8 @@
padding: 8px;
font-weight: 700;
}
.feedback-button {
margin: 8px;
}
</style>