summaryrefslogtreecommitdiff
path: root/ui/app/components/center.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/center.js')
-rw-r--r--ui/app/components/center.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/app/components/center.js b/ui/app/components/center.js
index 6fa6212..5e47d0c 100644
--- a/ui/app/components/center.js
+++ b/ui/app/components/center.js
@@ -7,7 +7,8 @@ import React from 'react'
class Center extends React.Component {
static get defaultProps() {return{
- width: null
+ width: null,
+ direction: 'both',
}}
constructor(props) {
@@ -19,8 +20,9 @@ class Center extends React.Component {
if (this.props.width) {
style = {width: this.props.width + 'px'}
}
+ let className = "center-container center-" + this.props.direction
return (
- <div className="center-container">
+ <div className={className}>
<div className="center-item" style={style}>
{this.props.children}
</div>