WaitingForData.vue 309 Bytes
Newer Older
abergavenny's avatar
abergavenny committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script setup>
import { MESSAGES } from '@/data/messages'
</script>

<template>
  <div class="waiting-for-data">
    <span>{{ MESSAGES['WAITING_FOR_DATA'] }}</span>
  </div>
</template>

<style scoped>
.waiting-for-data {
    display: flex;
}

.waiting-for-data>span {
    font-size: var(--text-s);
}
</style>