Skip to content

Commit 1e0ae50

Browse files
committed
prepare for release
1 parent b9c583a commit 1e0ae50

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ The component intentionally ships mostly unstyled — it only sets the inline st
163163

164164
```css
165165
.split_flap_display {
166-
--ease-out-cubic: cubic-bezier(.215, .61, .355, 1);
166+
--ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
167167
display: flex;
168168
font-size: 3.5em;
169169
gap: 2px; /* gap between characters */
@@ -185,8 +185,9 @@ The component intentionally ships mostly unstyled — it only sets the inline st
185185
> [data-split-flap-flap] {
186186
background: var(--color-background);
187187
border-radius: 3px;
188-
box-shadow: inset 0 0 2px 0.75px var(--color-border-2),
189-
inset 0 0 0 1px var(--color-border-1);
188+
box-shadow:
189+
inset 0 0 2px 0.75px var(--color-border-2),
190+
inset 0 0 0 1px var(--color-border-1);
190191
box-sizing: content-box;
191192
height: 0.5em;
192193
line-height: 1;
@@ -208,7 +209,6 @@ The component intentionally ships mostly unstyled — it only sets the inline st
208209
}
209210
```
210211

211-
212212
## Examples
213213

214214
### Per-slot character sets (clock)

src/SplitFlapDisplay.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ describe("SplitFlapDisplay", () => {
161161
"800ms",
162162
);
163163
expect(root.style.getPropertyValue("--split-flap-timing-function")).toBe(
164-
"cubic-bezier(.550, .055, .675, .19)",
164+
"cubic-bezier(.215, .61, .355, 1)",
165165
);
166166
});
167167

0 commit comments

Comments
 (0)