Skip to content

Commit cc22583

Browse files
fix(transition): fix wheel transitions
1 parent 4b0ae66 commit cc22583

8 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
# [1.12.0](https://github.com/vault-developer/event-loop-explorer/compare/v1.11.5...v1.12.0) (2025-01-25)
22

3-
43
### Features
54

6-
* **transition:** add color transition ([c57add7](https://github.com/vault-developer/event-loop-explorer/commit/c57add774c09140a844c35ca38d699dfd838f2fe))
5+
- **transition:** add color transition ([c57add7](https://github.com/vault-developer/event-loop-explorer/commit/c57add774c09140a844c35ca38d699dfd838f2fe))
76

87
## [1.11.5](https://github.com/vault-developer/event-loop-explorer/compare/v1.11.4...v1.11.5) (2025-01-25)
98

10-
119
### Bug Fixes
1210

13-
* **colors:** update wheel colors ([a6be71e](https://github.com/vault-developer/event-loop-explorer/commit/a6be71e6e512280842b5ad9683d1f1aaf6ee3d25))
11+
- **colors:** update wheel colors ([a6be71e](https://github.com/vault-developer/event-loop-explorer/commit/a6be71e6e512280842b5ad9683d1f1aaf6ee3d25))
1412

1513
## [1.11.4](https://github.com/vault-developer/event-loop-explorer/compare/v1.11.3...v1.11.4) (2025-01-19)
1614

src/pages/home/sections/Callstack/Callstack.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const Callstack = styled.div`
1313
export const CallstackElement = styled.div(
1414
({ theme }) => css`
1515
background: ${theme.custom.colors.onContainer.dim};
16+
transition: background-color ${theme.custom.colorTransition};
1617
border-radius: 5px;
1718
padding: 10px;
1819
word-wrap: break-word;

src/pages/home/sections/Console/Console.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export const LogQueue = styled.div`
1212
export const Log = styled.div(
1313
({ theme }) => css`
1414
background: ${theme.custom.colors.onContainer.dim};
15+
transition: background-color ${theme.custom.colorTransition};
1516
border-radius: 5px;
1617
padding: 10px;
1718
word-wrap: break-word;

src/pages/home/sections/EventLoop/Wheel/Wheel.styled.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ export const SVGContainer = styled.svg(
1515
path,
1616
text,
1717
circle {
18-
transition: all ${theme.custom.colorTransition};
18+
transition:
19+
background-color ${theme.custom.colorTransition},
20+
color ${theme.custom.colorTransition},
21+
stroke ${theme.custom.colorTransition},
22+
fill ${theme.custom.colorTransition};
1923
}
2024
`
2125
);

src/pages/home/sections/MicroTasksQueue/MicroTasksQueue.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export const MicroTasksQueue = styled.div`
1212
export const MicroTask = styled.div(
1313
({ theme }) => css`
1414
background: ${theme.custom.colors.onContainer.dim};
15+
transition: background-color ${theme.custom.colorTransition};
1516
flex: 1;
1617
display: flex;
1718
justify-content: center;

src/pages/home/sections/RequestAnimationFrameQueue/RequestAnimationFrameQueue.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export const CallbacksQueue = styled.div`
1212
export const Callback = styled.div(
1313
({ theme }) => css`
1414
background: ${theme.custom.colors.onContainer.dim};
15+
transition: background-color ${theme.custom.colorTransition};
1516
flex: 1;
1617
display: flex;
1718
justify-content: center;

src/pages/home/sections/TasksQueue/TasksQueue.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export const TasksQueue = styled.div`
1212
export const Task = styled.div(
1313
({ theme }) => css`
1414
background: ${theme.custom.colors.onContainer.dim};
15+
transition: background-color ${theme.custom.colorTransition};
1516
flex: 1;
1617
display: flex;
1718
justify-content: center;

src/pages/home/sections/WebApiQueue/WebApiTask.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { css } from '@emotion/react';
44
export const WebApiItem = styled.div(
55
({ theme }) => css`
66
background: ${theme.custom.colors.onContainer.dim};
7+
transition: background-color ${theme.custom.colorTransition};
78
border-radius: 5px;
89
padding: 10px;
910
position: absolute;

0 commit comments

Comments
 (0)