1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

fixing export styling

This commit is contained in:
Martin McKeaveney 2020-09-30 16:53:11 +01:00
parent 27d9d98b68
commit bc854df60c

View file

@ -47,6 +47,7 @@
<Popover bind:this={dropdown} {anchor} align="left">
<h5>Export Format</h5>
<Select secondary thin bind:value={exportFormat}>
<option value={''}>Select an option</option>
{#each FORMATS as format}
<option value={format.key}>{format.name}</option>
{/each}
@ -66,6 +67,5 @@
margin-top: var(--spacing-l);
display: flex;
justify-content: flex-end;
gap: var(--spacing-s);
}
</style>