[-] Remove loading

This commit is contained in:
Hykilpikonna
2019-10-13 20:29:02 -04:00
parent e95efbff59
commit f1089dbdf5
3 changed files with 1 additions and 46 deletions
+1 -2
View File
@@ -8,7 +8,6 @@ import pWaitFor from 'p-wait-for';
import {HttpUtils} from '@/utils/http-utils';
import {CourseUtils} from '@/utils/course-utils';
import {GPAUtils} from '@/utils/gpa-utils';
import Loading from '@/components/loading/loading';
/**
* Objects of this interface represent assignment grades.
@@ -58,7 +57,7 @@ export interface Course
}
@Component({
components: {Login, Navigation, Overall, Loading},
components: {Login, Navigation, Overall},
})
export default class App extends Vue
{
-10
View File
@@ -1,10 +0,0 @@
import {Component, Prop, Vue} from 'vue-property-decorator';
@Component({
components: {}
})
export default class Loading extends Vue
{
// @ts-ignore
@Prop() text: string;
}
-34
View File
@@ -1,34 +0,0 @@
<template>
<div id="loading">
<div id="text">
{{text}}
</div>
</div>
</template>
<script src="./loading.ts" lang="ts"></script>
<style scoped>
#loading
{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #00000065;
text-align: center;
}
#text
{
color: white;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>