aboutsummaryrefslogtreecommitdiff
path: root/src/client/react
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-02-13 14:05:30 +0100
committerNoah Loomans <noahloomans@gmail.com>2018-02-13 14:05:30 +0100
commit392fee0c2b15a6d7d53330614afb9364a10bc6c8 (patch)
tree12631c02c77ae214c61864eb0e15992f2a9306d9 /src/client/react
parent11fe20e7cd957afdc1efa8858100764aaf22759d (diff)
Fix styling
Diffstat (limited to 'src/client/react')
-rw-r--r--src/client/react/components/presentational/Loading.js4
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>
);
}
}