Merge pull request #191 from mewtaylor/issue/gh-131-again

GH-131 Again: remove `small` from live inputs
This commit is contained in:
DD Liu 2017-11-08 08:32:55 -05:00 committed by GitHub
commit ba6de5accc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 4 deletions

View file

@ -41,6 +41,6 @@ See https://github.com/LLK/scratch-paint/issues/13 */
}
.input-small {
width: 3.5rem;
width: 3rem;
text-align: center;
}

View file

@ -65,7 +65,6 @@ const ModeToolsComponent = props => {
/>
</div>
<LiveInput
small
max={MAX_STROKE_WIDTH}
min="1"
type="number"
@ -85,7 +84,6 @@ const ModeToolsComponent = props => {
/>
</div>
<LiveInput
small
max={MAX_STROKE_WIDTH}
min="1"
type="number"

View file

@ -11,7 +11,6 @@ const LiveInput = LiveInputHOC(Input);
const StrokeWidthIndicatorComponent = props => (
<InputGroup disabled={props.disabled}>
<LiveInput
small
disabled={props.disabled}
max={MAX_STROKE_WIDTH}
min="0"