Some design updates (#3649)

* CSS: badge size update

* close modal when remove the project
This commit is contained in:
Pavel Laptev 2024-05-01 01:10:22 +02:00 committed by GitHub
parent 382e265bb5
commit c9aba85bfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,7 @@
export let help = '';
</script>
<div class="badge text-base-9 text-semibold" use:tooltip={help}>
<div class="badge text-base-10 text-bold" use:tooltip={help}>
{count}
</div>

View File

@ -48,7 +48,9 @@
reversedDirection
loading={isDeleting}
icon="bin-small"
on:click={onDeleteClicked}>Remove</Button
on:click={() => {
onDeleteClicked().then(close);
}}>Remove</Button
>
<Button style="pop" kind="solid" on:click={close}>Cancel</Button>
</svelte:fragment>