mirror of
https://github.com/wukko/cobalt.git
synced 2025-05-05 16:24:31 +02:00

- moved backdrop to each dialog - dialog is now closable by clicking the backdrop - added meowbalt to dialogs - added more meowbalt assets & components - added "main" boolean to indicate the main action button in a list of buttons
20 lines
336 B
Svelte
20 lines
336 B
Svelte
<script lang="ts">
|
|
import { t } from "$lib/i18n/translations";
|
|
</script>
|
|
|
|
<img
|
|
id="meowbalt-error"
|
|
src="/meowbalt/error.png"
|
|
height="160"
|
|
alt={$t("a11y.meowbalt.error")}
|
|
/>
|
|
|
|
<style>
|
|
#meowbalt-error {
|
|
display: block;
|
|
margin: 0;
|
|
object-fit: cover;
|
|
margin-left: 25px;
|
|
}
|
|
</style>
|