Skip to content

Commit f57ab77

Browse files
committed
Merge branch 'main' into fix/component-default-props
2 parents 1bfad3b + c5d9242 commit f57ab77

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

packages/spectacle/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 10.2.1
4+
5+
### Patch Changes
6+
7+
- Ensure "PacMan" animation works in Safari ([#1352](https://github.com/FormidableLabs/spectacle/pull/1352))
8+
39
## 10.2.0
410

511
### Minor Changes

packages/spectacle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spectacle",
3-
"version": "10.2.0",
3+
"version": "10.2.1",
44
"description": "ReactJS Powered Presentation Framework",
55
"types": "lib/index.d.ts",
66
"main": "lib/index.js",

packages/spectacle/src/components/animated-progress.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ export const PacmanBase = styled.div<PacmanBaseProps>`
2727
width: ${({ pacmanSize }) => pacmanSize}px;
2828
transition: left 0.3s ease-in-out 0.2s;
2929
transform: translate(-50%, -50%);
30+
border-radius: 9999px;
31+
overflow: hidden;
3032
`;
3133

3234
const pacmanTopFrames = keyframes`

0 commit comments

Comments
 (0)