aboutsummaryrefslogtreecommitdiff
path: root/src/site/components/loading/RotateSquare.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/site/components/loading/RotateSquare.vue')
-rw-r--r--src/site/components/loading/RotateSquare.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/site/components/loading/RotateSquare.vue b/src/site/components/loading/RotateSquare.vue
index 089e01a..7bc9bb0 100644
--- a/src/site/components/loading/RotateSquare.vue
+++ b/src/site/components/loading/RotateSquare.vue
@@ -9,18 +9,18 @@ export default {
props: {
size: {
type: String,
- default: '40px',
- },
+ default: '40px'
+ }
},
computed: {
styles() {
return {
width: this.size,
height: this.size,
- display: 'inline-block',
+ display: 'inline-block'
};
- },
- },
+ }
+ }
};
</script>