diff options
author | Noah Loomans <noahloomans@gmail.com> | 2018-02-13 14:05:30 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2018-02-13 14:05:30 +0100 |
commit | 392fee0c2b15a6d7d53330614afb9364a10bc6c8 (patch) | |
tree | 12631c02c77ae214c61864eb0e15992f2a9306d9 /src/client/react/components | |
parent | 11fe20e7cd957afdc1efa8858100764aaf22759d (diff) |
Fix styling
Diffstat (limited to 'src/client/react/components')
-rw-r--r-- | src/client/react/components/presentational/Loading.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/react/components/presentational/Loading.js b/src/client/react/components/presentational/Loading.js index a149de2..1a34a71 100644 --- a/src/client/react/components/presentational/Loading.js +++ b/src/client/react/components/presentational/Loading.js @@ -4,7 +4,9 @@ import { LinearProgress } from 'rmwc/LinearProgress'; class Loading extends React.Component { render() { return ( - <LinearProgress determinate={false} /> + <div className="loading"> + <LinearProgress determinate={false} /> + </div> ); } } |