Browse Source

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

pull/4023/head
Andrew Kingston 6 years ago
parent
commit
d4fe058804
  1. 10
      packages/builder/src/components/start/Steps/API.svelte

10
packages/builder/src/components/start/Steps/API.svelte

@ -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>

Loading…
Cancel
Save