Skip to content

Commit

Permalink
Merge pull request #101 from dabapps/input-class-width
Browse files Browse the repository at this point in the history
Input class width
  • Loading branch information
JakeSidSmith authored Aug 8, 2017
2 parents 7445e2f + 6e13777 commit 3d187e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "roe",
"version": "0.8.4",
"version": "0.8.5",
"description": "A Collection of React Components for Project Development",
"main": "dist/js/index.js",
"types": "dist/js/index.d.ts",
Expand Down
10 changes: 8 additions & 2 deletions src/less/overrides.less
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,11 @@ button {
input,
select,
textarea {
display: inline-block;
padding: @padding-base / 2;
border-radius: @border-radius-base;
border: @border-base;
appearance: none;
font-size: @font-size-base;
width: @input-width;
height: @input-height;
color: @font-color-base;

Expand All @@ -119,6 +117,14 @@ textarea {
}
}

input,
select,
.input,
.select {
display: inline-block;
width: @input-width;
}

textarea {
width: @textarea-width;
height: @textarea-height;
Expand Down

0 comments on commit 3d187e6

Please sign in to comment.