Fix styling of get API key link and fix grammar in title

This commit is contained in:
Andrew Kingston 2020-11-02 08:54:27 +00:00
parent e54a168848
commit d4fe058804
1 changed files with 9 additions and 1 deletions

View File

@ -5,7 +5,7 @@
let blurred = { api: false }
</script>
<h2>Setup your API Key</h2>
<h2>Set up your API Key</h2>
<div class="container">
<Input
on:input={() => (blurred.api = true)}
@ -22,4 +22,12 @@
display: grid;
grid-gap: 40px;
}
a {
color: var(--grey-7);
font-weight: 500;
font-size: var(--font-size-s);
}
a:hover {
color: var(--ink);
}
</style>