This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/misc/loading.vue

19 lines
262 B
Vue
Raw Normal View History

2020-07-27 17:53:19 +00:00
<template>
<div class="loader-container is-loading"></div>
</template>
<script>
export default {
name: 'loading',
}
2020-07-27 17:53:19 +00:00
</script>
<style scoped>
.loader-container {
height: 100%;
min-height: 200px;
width: 100%;
min-width: 600px;
max-width: 100vw;
}
2020-07-27 17:53:19 +00:00
</style>