From 5165297e2ae7ec04159f4e35bc26141554435f8f Mon Sep 17 00:00:00 2001 From: Colin Megill Date: Tue, 2 Oct 2018 16:28:57 -0400 Subject: [PATCH] position tweak --- client/src/components/categorical/categorical.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/client/src/components/categorical/categorical.js b/client/src/components/categorical/categorical.js index 1c73162b..bd0db6c2 100644 --- a/client/src/components/categorical/categorical.js +++ b/client/src/components/categorical/categorical.js @@ -74,10 +74,8 @@ class Category extends React.Component { const { isChecked } = this.state; // || this.checkbox.indeterminate === false if (isChecked) { - console.log("checked, firing toggle none"); this.toggleNone(); } else if (!isChecked) { - console.log("!checked, firing toggle all"); this.toggleAll(); } } @@ -128,7 +126,7 @@ class Category extends React.Component { cursor: "pointer", display: "inline-block", position: "relative", - top: 2 + top: -1 }} onClick={() => { this.setState({ isExpanded: !isExpanded }); @@ -146,7 +144,7 @@ class Category extends React.Component {