fix(ui): fix background color on group load more/less buttons

This commit is contained in:
Łukasz Mierzwa
2018-07-19 23:38:11 +02:00
parent 542e45e5ac
commit eea9f2f5df
@@ -37,11 +37,7 @@ function getStepSize(totalSize) {
const LoadButton = ({ icon, action }) => {
return (
<button
type="button"
className="btn btn-sm py-0 hover-bg-light"
onClick={action}
>
<button type="button" className="btn btn-sm py-0 bg-white" onClick={action}>
<FontAwesomeIcon className="text-muted" icon={icon} />
</button>
);