summaryrefslogtreecommitdiff
path: root/src/client/components/loading.vue
blob: 640c4cc9e391dd0083a9abe5fc935ffe395af2e8 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<template>
<div class="yxspomdl">
	<div class="ring"></div>
</div>
</template>

<script lang="ts">
import Vue from 'vue';

export default Vue.extend({
});
</script>

<style lang="scss" scoped>
@keyframes ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.yxspomdl {
	padding: 32px;
	text-align: center;

	> .ring {
		display: inline-block;
		opacity: 0.7;
		vertical-align: middle;
	}

	> .ring:after {
		content: " ";
		display: block;
		box-sizing: border-box;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		border: solid 4px;
		border-color: currentColor transparent transparent transparent;
		animation: ring 0.5s linear infinite;
	}
}
</style>