mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-10 22:47:03 -05:00
Merge pull request #191 from mewtaylor/issue/gh-131-again
GH-131 Again: remove `small` from live inputs
This commit is contained in:
commit
ba6de5accc
3 changed files with 1 additions and 4 deletions
|
@ -41,6 +41,6 @@ See https://github.com/LLK/scratch-paint/issues/13 */
|
|||
}
|
||||
|
||||
.input-small {
|
||||
width: 3.5rem;
|
||||
width: 3rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue