Skip to content

Commit

Permalink
fix: #16089 (#16090)
Browse files Browse the repository at this point in the history
  • Loading branch information
thexeos authored Jul 19, 2023
1 parent f09bd71 commit 0bfb69c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ui/src/components/spinner/QSpinnerComment.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const svg = [
h('rect', {
x: '0',
y: '0',
width: ' 100',
width: '100',
height: '100',
fill: 'none'
}),
Expand Down
10 changes: 5 additions & 5 deletions ui/src/components/spinner/QSpinnerCube.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const svg = [
h('rect', {
x: '0',
y: '0',
width: ' 100',
width: '100',
height: '100',
fill: 'none'
}),
Expand All @@ -18,7 +18,7 @@ const svg = [
h('rect', {
x: '-20',
y: '-20',
width: ' 40',
width: '40',
height: '40',
fill: 'currentColor',
opacity: '0.9'
Expand All @@ -43,7 +43,7 @@ const svg = [
h('rect', {
x: '-20',
y: '-20',
width: ' 40',
width: '40',
height: '40',
fill: 'currentColor',
opacity: '0.8'
Expand All @@ -68,7 +68,7 @@ const svg = [
h('rect', {
x: '-20',
y: '-20',
width: ' 40',
width: '40',
height: '40',
fill: 'currentColor',
opacity: '0.7'
Expand All @@ -93,7 +93,7 @@ const svg = [
h('rect', {
x: '-20',
y: '-20',
width: ' 40',
width: '40',
height: '40',
fill: 'currentColor',
opacity: '0.6'
Expand Down
6 changes: 3 additions & 3 deletions ui/src/components/spinner/QSpinnerFacebook.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const svg = [
h('rect', {
x: '-10',
y: '-30',
width: ' 20',
width: '20',
height: '60',
fill: 'currentColor',
opacity: '0.6'
Expand All @@ -37,7 +37,7 @@ const svg = [
h('rect', {
x: '-10',
y: '-30',
width: ' 20',
width: '20',
height: '60',
fill: 'currentColor',
opacity: '0.8'
Expand All @@ -63,7 +63,7 @@ const svg = [
h('rect', {
x: '-10',
y: '-30',
width: ' 20',
width: '20',
height: '60',
fill: 'currentColor',
opacity: '0.9'
Expand Down
4 changes: 2 additions & 2 deletions ui/src/components/spinner/QSpinnerHourglass.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const svg = [
h('rect', {
x: '15',
y: '20',
width: ' 70',
width: '70',
height: '25'
}, [
h('animate', {
Expand Down Expand Up @@ -48,7 +48,7 @@ const svg = [
h('rect', {
x: '15',
y: '55',
width: ' 70',
width: '70',
height: '25'
}, [
h('animate', {
Expand Down

0 comments on commit 0bfb69c

Please sign in to comment.