Skip to content

Commit

Permalink
Fix box-sizing error in BS3
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ch4ls committed Aug 12, 2015
1 parent 32f65a8 commit b290b00
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/lindat.less
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,16 @@ body {
margin: 0; padding: 0;
}

*, *:before, *:after {
box-sizing: inherit;
}

.lindat-common {
font-family: "Droid Sans", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
font-size: 14px;

// Scope box-sizing because it can break BS3 styles
*, *:before, *:after {
box-sizing: inherit;
}
}

.lindat-container {
Expand Down

0 comments on commit b290b00

Please sign in to comment.