Skip to content

Commit

Permalink
3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wwayne committed Jun 17, 2016
1 parent a301d41 commit 7da31ca
Show file tree
Hide file tree
Showing 9 changed files with 800 additions and 1,128 deletions.
738 changes: 181 additions & 557 deletions dist/react-tooltip.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/react-tooltip.min.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/react-tooltip.min.js

Large diffs are not rendered by default.

18 changes: 13 additions & 5 deletions dist/react-tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,30 @@
background-color: $background-color;
&.place-top {
&:after {
border-top: 6px solid $background-color;
border-top-color: $background-color;
border-top-style: solid;
border-top-width: 6px;
}
}
&.place-bottom {
&:after {
border-bottom: 6px solid $background-color;
border-bottom-color: $background-color;
border-bottom-style: solid;
border-bottom-width: 6px;
}
}
&.place-left {
&:after {
border-left: 6px solid $background-color;
border-left-color: $background-color;
border-left-style: solid;
border-left-width: 6px;
}
}
&.place-right {
&:after {
border-right: 6px solid $background-color;
border-right-color: $background-color;
border-right-style: solid;
border-right-width: 6px;
}
}
}
Expand Down Expand Up @@ -188,4 +196,4 @@
padding: 2px 0px;
text-align: center;
}
}
}
Loading

0 comments on commit 7da31ca

Please sign in to comment.