Skip to content
This repository was archived by the owner on Apr 14, 2020. It is now read-only.

Commit bf95e34

Browse files
committed
Regen docs
1 parent dc31a59 commit bf95e34

6 files changed

Lines changed: 46 additions & 5 deletions

File tree

docs/app.dark-side.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/app.dark-side.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/components/ListPage.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const ListPage = ({ onClick }: { onClick: Function }) => (
1919
<Animate
2020
key={item.name}
2121
pair={item.name}
22+
className="wobble-in"
2223
animations={[[{
2324
animationName: 'swipe',
2425
background: item.color,

docs/styles.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,43 @@ p {
8888
font-size: 3em;
8989
font-family: sans-serif;
9090
}
91+
92+
@keyframes wobble {
93+
0% {
94+
transform: scale(0.9);
95+
opacity: 0.5;
96+
}
97+
100% {
98+
transform: scale(1);
99+
opacity: 1;
100+
}
101+
}
102+
103+
.wobble-in {
104+
transform: scale(0.9);
105+
animation-name: wobble;
106+
animation-duration: 0.2s;
107+
animation-fill-mode: forwards;
108+
opacity: 0.5;
109+
animation-timing-function: ease-out;
110+
}
111+
112+
.wobble-in:nth-child(2) {
113+
animation-delay: 0.05s;
114+
}
115+
116+
.wobble-in:nth-child(3) {
117+
animation-delay: 0.1s;
118+
}
119+
120+
.wobble-in:nth-child(4) {
121+
animation-delay: 0.15s;
122+
}
123+
124+
.wobble-in:nth-child(5) {
125+
animation-delay: 0.2s;
126+
}
127+
128+
.wobble-in:nth-child(6) {
129+
animation-delay: 0.25s;
130+
}

docs/yubaba-react.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/yubaba-react.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)