Skip to content

Commit

Permalink
Fix border radius (close pespantelis#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
pespantelis committed Oct 4, 2016
1 parent ebc9ca9 commit 3cd15fc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions demo/Typeahead.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,13 @@ li {
}
li:first-child {
border-radius: 4px 4px 0 0;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
li:last-child {
border-radius: 0 0 4px 4px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: 0;
}
Expand Down

0 comments on commit 3cd15fc

Please sign in to comment.