Skip to content

Commit 7da31ca

Browse files
committed
3.0.1
1 parent a301d41 commit 7da31ca

9 files changed

+800
-1128
lines changed

dist/react-tooltip.js

+181-557
Large diffs are not rendered by default.

dist/react-tooltip.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-tooltip.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-tooltip.scss

+13-5
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,30 @@
22
background-color: $background-color;
33
&.place-top {
44
&:after {
5-
border-top: 6px solid $background-color;
5+
border-top-color: $background-color;
6+
border-top-style: solid;
7+
border-top-width: 6px;
68
}
79
}
810
&.place-bottom {
911
&:after {
10-
border-bottom: 6px solid $background-color;
12+
border-bottom-color: $background-color;
13+
border-bottom-style: solid;
14+
border-bottom-width: 6px;
1115
}
1216
}
1317
&.place-left {
1418
&:after {
15-
border-left: 6px solid $background-color;
19+
border-left-color: $background-color;
20+
border-left-style: solid;
21+
border-left-width: 6px;
1622
}
1723
}
1824
&.place-right {
1925
&:after {
20-
border-right: 6px solid $background-color;
26+
border-right-color: $background-color;
27+
border-right-style: solid;
28+
border-right-width: 6px;
2129
}
2230
}
2331
}
@@ -188,4 +196,4 @@
188196
padding: 2px 0px;
189197
text-align: center;
190198
}
191-
}
199+
}

0 commit comments

Comments
 (0)