Fix error box styles
This commit is contained in:
parent
d2ec751891
commit
2df104568d
|
@ -5,9 +5,25 @@
|
|||
</script>
|
||||
|
||||
{#if hasErrors}
|
||||
<div class="bb__alert bb__alert--danger">
|
||||
<div class="container bb__alert bb__alert--danger">
|
||||
{#each errors as error}
|
||||
<div>{error.dataPath} {error.message}</div>
|
||||
<div class="error">{error.dataPath} {error.message}</div>
|
||||
{/each}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<style>
|
||||
.container {
|
||||
border-radius: var(--border-radius-m);
|
||||
margin: 0;
|
||||
padding: var(--spacing-m);
|
||||
}
|
||||
|
||||
.error {
|
||||
font-size: var(--font-size-xs);
|
||||
font-weight: 500;
|
||||
}
|
||||
.error:first-letter {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue