Skip to content

Commit

Permalink
Replace invalid css values with correct ones. (#562)
Browse files Browse the repository at this point in the history
flex-wrap: no-wrap > flex-wrap: nowrap
font-weight: regular > font-weight: normal
  • Loading branch information
shawnhooper authored and xaksis committed Aug 5, 2019
1 parent 8b71961 commit 1ebc281
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/styles/_control-bar.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.vgt-global-search{
padding: 5px 0px;
display: flex;
flex-wrap: no-wrap;
flex-wrap: nowrap;
align-items: stretch;
border: 1px solid $border-color;
border-bottom: 0px;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/_input.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
line-height: 1;
display: block;
font-size: 14px;
font-weight: regular;
font-weight: normal;
padding: 6px 12px;
color: $text-color;
border-radius: 4px;
Expand Down

0 comments on commit 1ebc281

Please sign in to comment.