Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(select): fix 1px error to match md-input-container style
Browse files Browse the repository at this point in the history
closes #1738
  • Loading branch information
rschmukler committed Apr 20, 2015
1 parent 9edd715 commit bd566a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/select/select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ md-select {
&:focus {
.md-select-label {
border-bottom: 2px solid;
padding-bottom: $baseline-grid - 1;
padding-bottom: $baseline-grid + 1;
}
}
}
Expand All @@ -86,8 +86,8 @@ md-select {
.md-select-label {
display: flex;
align-items: center;
padding-top: $baseline-grid + 1;
padding-bottom: $baseline-grid;
padding-top: $baseline-grid - 1;
padding-bottom: $baseline-grid + 2;
border-bottom: 1px solid;
font-size: 1.6rem;
line-height: 0.8em;
Expand Down

0 comments on commit bd566a5

Please sign in to comment.