styling updates after review

This commit is contained in:
Martin McKeaveney 2020-10-05 15:26:31 +01:00
parent 6f28374785
commit d8787a5d48
2 changed files with 3 additions and 5 deletions

View File

@ -70,7 +70,7 @@
disabled={!name || (dataImport && !dataImport.valid)} disabled={!name || (dataImport && !dataImport.valid)}
primary primary
on:click={saveTable}> on:click={saveTable}>
<span>Save</span> <span style={`margin-right: ${loading ? '10px' : 0};`}>Save</span>
{#if loading} {#if loading}
<Spinner size="10" /> <Spinner size="10" />
{/if} {/if}
@ -86,10 +86,6 @@
font-weight: 500; font-weight: 500;
} }
span {
margin-right: 5px;
}
.container { .container {
padding: var(--spacing-l); padding: var(--spacing-l);
margin: 0; margin: 0;

View File

@ -168,6 +168,7 @@
justify-content: center; justify-content: center;
width: 100%; width: 100%;
background-color: var(--grey-2); background-color: var(--grey-2);
font-size: var(--font-size-xs);
} }
.omit-button { .omit-button {
@ -183,5 +184,6 @@
margin-top: var(--spacing-m); margin-top: var(--spacing-m);
align-items: center; align-items: center;
grid-gap: var(--spacing-m); grid-gap: var(--spacing-m);
font-size: var(--font-size-xs);
} }
</style> </style>