aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/components/BaseErrorMessage.vue
blob: 83eb3a492a2904709b8395899d9cac6fa3e9be4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<template>
	<div v-if="fetchFailed" class="fs-5">
		<span class="fetch-error-title">Error</span>
		<p>{{ fetchFailed }}</p>
	</div>
</template>

<script lang="ts">
import { defineComponent } from "vue";

export default defineComponent({
	name: "BaseErrorMessage",
	props: {
		fetchFailed: {
			type: String,
			required: true
		}
	}
});
</script>

<style lang="scss" scoped>
@use "../scss/colors";

.fetch-error-title {
	color: colors.$danger;
	font-weight: 700;
}
</style>