Files
luos/resources/assets/js/components/utils/Loading.vue
Rodrigo Quelca ffda3997d5 fix conflicts
fix

Revert "fix"

This reverts commit 6d21e322081ecd8b89db4d6c07c6c8a82b2549a6.

add advanced-search main

fix header

gif Home

fix missed code

CR notes

CR notes 2

CR notes 5

CR notes 8
2020-12-04 21:36:59 +00:00

22 lines
326 B
Vue

<template>
<div id='loading'></div>
</template>
<script>
export default {
name: "Loading"
};
</script>
<style lang="scss">
#loading {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url(/images/gears.gif) 50% 50% no-repeat rgba(255, 255, 255, 1);
}
</style>