cobalt/web/src/components/meowbalt/MeowbaltError.svelte
wukko fa835d0010
web/dialog: css for small dialog
- 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
2024-07-16 14:00:56 +06:00

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>