diff options
author | Vitaly Takmazov | 2018-12-06 17:28:14 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:54 +0300 |
commit | 815750e983cdf9d76910afce494c18970c0fbf0b (patch) | |
tree | e7aaa0066b366bce90cdbc06ceecb68f1cf3d74b /vnext/src/components/Spinner.js | |
parent | 393be1efe0c1c2d70be1a6b9e3be663fd2f98f6d (diff) |
layout fixes
Diffstat (limited to 'vnext/src/components/Spinner.js')
-rw-r--r-- | vnext/src/components/Spinner.js | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/vnext/src/components/Spinner.js b/vnext/src/components/Spinner.js index b5e33947..a11426df 100644 --- a/vnext/src/components/Spinner.js +++ b/vnext/src/components/Spinner.js @@ -5,19 +5,17 @@ export default function Spinner(props) { return ( <div className="msg-cont"> <ContentLoader - height={160} speed={2} primaryColor="#f8f8f8" secondaryColor="#ecebeb" - style={{ height: '160px' }} {...props}> <rect x="56" y="6" rx="0" ry="0" width="117" height="6.4" /> <rect x="56" y="20" rx="0" ry="0" width="85" height="6.4" /> - <rect x="0" y="60" rx="0" ry="0" width="340" height="6.4" /> - <rect x="0" y="78" rx="0" ry="0" width="340" height="6.4" /> + <rect x="0" y="60" rx="0" ry="0" width="270" height="6.4" /> + <rect x="0" y="78" rx="0" ry="0" width="270" height="6.4" /> <rect x="0" y="96" rx="0" ry="0" width="201" height="6.4" /> <rect x="0" y="0" rx="0" ry="0" width="48" height="48" /> - <rect x="0" y="120" rx="0" ry="0" width="340" height="1" /> + <rect x="0" y="120" rx="0" ry="0" width="270" height="1" /> </ContentLoader> </div> ); |