diff --git a/client/coral-admin/src/components/LoadMore.js b/client/coral-admin/src/components/LoadMore.js
index ac7ea38d6..969c6734f 100644
--- a/client/coral-admin/src/components/LoadMore.js
+++ b/client/coral-admin/src/components/LoadMore.js
@@ -1,9 +1,10 @@
import React, {PropTypes} from 'react';
import {Button} from 'coral-ui';
import styles from './LoadMore.css';
+import cn from 'classnames';
-const LoadMore = ({loadMore, showLoadMore}) =>
-
+const LoadMore = ({loadMore, showLoadMore, className, ...rest}) =>
+
{
showLoadMore &&
diff --git a/client/coral-ui/components/Drawer.css b/client/coral-ui/components/Drawer.css
index d6a7e6871..88c30425f 100644
--- a/client/coral-ui/components/Drawer.css
+++ b/client/coral-ui/components/Drawer.css
@@ -3,7 +3,7 @@
min-width: 550px;
position: fixed;
top: 0;
- right: -17px;
+ right: 0px;
bottom: 0;
background-color: white;
transition: transform 500ms ease-in-out;