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 e90664848e
5 changed files with 12 additions and 24 deletions

View File

@ -175,7 +175,7 @@
flex: 1 1 auto; flex: 1 1 auto;
} }
:global(.grid-wrapper) { :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-border-color: var(--grey-3);
--ag-header-background-color: var(--grey-1); --ag-header-background-color: var(--grey-1);
--ag-odd-row-background-color: var(--grey-1); --ag-odd-row-background-color: var(--grey-1);

View File

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

View File

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

View File

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

View File

@ -36,26 +36,6 @@ html, body {
overflow-y: hidden; 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 { .hoverable:hover {
cursor: pointer; cursor: pointer;
} }