1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Merge pull request #813 from Budibase/new-app-modal-fixes

New app modal fixes
This commit is contained in:
Andrew Kingston 2020-11-02 12:12:52 +00:00 committed by GitHub
commit 025e6f644b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 24 deletions

View file

@ -175,7 +175,7 @@
flex: 1 1 auto;
}
:global(.grid-wrapper) {
--ag-modal-overlay-background-color: rgba(0, 0, 0, 0.05);
--ag-modal-overlay-background-color: transparent;
--ag-border-color: var(--grey-3);
--ag-header-background-color: var(--grey-1);
--ag-odd-row-background-color: var(--grey-1);

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>

View file

@ -6,7 +6,7 @@
let blurred = { appName: false }
</script>
<h2>Create your web app</h2>
<h2>Create your Web App</h2>
<div class="container">
{#if template}
<div class="template">

View file

@ -5,7 +5,7 @@
let blurred = { username: false, password: false }
</script>
<h2>Create new user</h2>
<h2>Create your first User</h2>
<div class="container">
<Input
on:input={() => (blurred.username = true)}

View file

@ -36,26 +36,6 @@ html, body {
overflow-y: hidden;
}
h1 {
font-size: 36pt;
}
h2 {
font-size: 30pt;
}
h3 {
font-size: 24pt;
}
h4 {
font-size: 18pt;
}
h5 {
font-size: 14pt;
}
.hoverable:hover {
cursor: pointer;
}