File tree Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export default {
112
112
},
113
113
data () {
114
114
return {
115
- size: ' 50px '
115
+ size: ' 40px '
116
116
}
117
117
}
118
118
}
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div v-bind:style = " styles " class =" spinner spinner--gauge" ></div >
2
+ <div class =" spinner spinner--gauge" ></div >
3
3
</template >
4
4
<script >
5
- export default {
6
- props: {
7
- size: {
8
- default: ' 60px'
9
- }
10
- },
11
- computed: {
12
- styles () {
13
- let size = parseInt (this .size )
14
- return {
15
- width: this .size ,
16
- height: size / 2 + ' px'
17
- }
18
- }
19
- }
20
- }
5
+ export default {}
21
6
</script >
22
7
<style lang="scss" scoped>
23
8
/* hides this rule from IE9 and below */
24
9
.spinner {
10
+ width : 60px ;
11
+ height : 30px ;
25
12
background : #6ca ;
26
13
-moz-border-radius-topleft : 32px ;
27
14
-webkit-border-top-left-radius : 32px ;
You can’t perform that action at this time.
0 commit comments