mirror of
https://github.com/garraflavatra/rolens.git
synced 2024-12-01 13:20:54 +00:00
Margin
This commit is contained in:
parent
e0cda5cccb
commit
ff2be60066
@ -73,7 +73,9 @@
|
||||
<label class="field">
|
||||
<input type="text" spellcheck="false" bind:value={newDb.name} use:input placeholder="New collection name" bind:this={newDbInput} />
|
||||
</label>
|
||||
<button class="btn create" type="submit">Create database</button>
|
||||
<p>
|
||||
<button class="btn create" type="submit" disabled={!newDb.name?.trim()}>Create database</button>
|
||||
</p>
|
||||
</form>
|
||||
</Modal>
|
||||
{/if}
|
||||
@ -86,7 +88,9 @@
|
||||
<label class="field">
|
||||
<input type="text" spellcheck="false" bind:value={newColl.name} use:input placeholder="New collection name" bind:this={newCollInput} />
|
||||
</label>
|
||||
<button class="btn create" type="submit">Create collection</button>
|
||||
<p>
|
||||
<button class="btn create" type="submit" disabled={!newColl.name?.trim()}>Create collection</button>
|
||||
</p>
|
||||
</form>
|
||||
</Modal>
|
||||
{/if}
|
||||
|
@ -28,7 +28,13 @@ body {
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 0.7rem 0;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
p:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
p strong {
|
||||
font-weight: 700;
|
||||
|
Loading…
Reference in New Issue
Block a user