Skip to content

Commit

Permalink
fix esbuild bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchox5 committed Jul 21, 2024
1 parent d5fd7ce commit 3007a99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scss/_segment.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
container-name: segment;
--o-angle-composite: (var(--o-angle) * var(--o-orbit-child-number) var(--o-offset, + 270deg)) * var(--o-direction, 1);
--o-y: calc(var(--o-radius) * sin(90deg - var(--o-angle) / 2));
--o-x: calc(var(--o-radius) * cos(90deg - var(--o-angle) / 2) * 2);
--o-transform: rotate( calc(var(--o-from) + var(--o-angle-composite)))
translate(0, var(--o-y));
width: calc(var(--o-radius) * cos(90deg - var(--o-angle) / 2) * 2);
width: var(--o-x);
position: absolute;
padding: 0;
transform: var(--o-transform);
Expand Down

0 comments on commit 3007a99

Please sign in to comment.