Skip to content

Commit

Permalink
Modified form elements border width & radius
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbin committed Jan 10, 2018
1 parent 2a2e478 commit cd61059
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions dist/snack.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/snack.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/snack.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/snack.min.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/css/snack.css
Original file line number Diff line number Diff line change
Expand Up @@ -967,8 +967,8 @@ label {
display: block;
width: 100%;
padding: 4px 8px;
border: 1px solid #ddd;
border-radius: 3px;
border: 2px solid #ddd;
border-radius: 4px;
background-color: #fff;
font-size: 14px;
line-height: 1.42858;
Expand Down
2 changes: 1 addition & 1 deletion src/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ label {
display: block;
width: 100%;
padding: 4px 8px;
border: 1px solid $input-border-color;
border: $input-border-width solid $input-border-color;
border-radius: $input-border-radius;
background-color: $input-bg-color;
font-size: $input-font-size;
Expand Down
3 changes: 2 additions & 1 deletion src/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ $table-hover-bg-color: #f5f5f5;
$input-bg-color: #fff;
$input-border-color: #ddd;
$input-border-color-focus: $color-primary;
$input-border-radius: 3px;
$input-border-width: 2px;
$input-border-radius: 4px;
$input-text-color: #333;
$input-font-size: $font-size-base;
$input-line-height: $line-height-base;
Expand Down

0 comments on commit cd61059

Please sign in to comment.