Skip to content

Commit

Permalink
Merge pull request #604 from sailpoint-oss/devrel-1673
Browse files Browse the repository at this point in the history
atttempt to fix build warning with css files
  • Loading branch information
darrell-thobe-sp authored Aug 28, 2024
2 parents e48223b + e86bcb4 commit 21ac057
Showing 1 changed file with 44 additions and 33 deletions.
77 changes: 44 additions & 33 deletions src/components/newtonsCradle/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,82 +34,93 @@

.line:nth-child(1) {
transform: rotate(calc(360deg / -12 * 1));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 1);
}
.line:nth-child(1)::before {
animation-delay: calc(var(--uib-speed) / -12 * 1);
}

.line:nth-child(2) {
transform: rotate(calc(360deg / -12 * 2));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 2);
}
.line:nth-child(2)::before {
animation-delay: calc(var(--uib-speed) / -12 * 2);
}

.line:nth-child(3) {
transform: rotate(calc(360deg / -12 * 3));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 3);
}
.line:nth-child(3)::before {
animation-delay: calc(var(--uib-speed) / -12 * 3);
}

.line:nth-child(4) {
transform: rotate(calc(360deg / -12 * 4));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 4);
}
.line:nth-child(4)::before {
animation-delay: calc(var(--uib-speed) / -12 * 4);
}

.line:nth-child(5) {
transform: rotate(calc(360deg / -12 * 5));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 5);
}
.line:nth-child(5)::before {
animation-delay: calc(var(--uib-speed) / -12 * 5);
}

.line:nth-child(6) {
transform: rotate(calc(360deg / -12 * 6));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 6);
}
.line:nth-child(6)::before {
animation-delay: calc(var(--uib-speed) / -12 * 6);
}

.line:nth-child(7) {
transform: rotate(calc(360deg / -12 * 7));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 7);
}
.line:nth-child(7)::before {
animation-delay: calc(var(--uib-speed) / -12 * 7);
}

.line:nth-child(8) {
transform: rotate(calc(360deg / -12 * 8));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 8);
}
.line:nth-child(8)::before {
animation-delay: calc(var(--uib-speed) / -12 * 8);
}

.line:nth-child(9) {
transform: rotate(calc(360deg / -12 * 9));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 9);
}
.line:nth-child(9)::before {
animation-delay: calc(var(--uib-speed) / -12 * 9);
}

.line:nth-child(10) {
transform: rotate(calc(360deg / -12 * 10));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 10);
}
.line:nth-child(10)::before {
animation-delay: calc(var(--uib-speed) / -12 * 10);
}

.line:nth-child(11) {
transform: rotate(calc(360deg / -12 * 11));
}

&::before {
animation-delay: calc(var(--uib-speed) / -12 * 11);
}
.line:nth-child(11)::before {
animation-delay: calc(var(--uib-speed) / -12 * 11);
}


@keyframes pulse {
0%,
80%,
Expand Down

0 comments on commit 21ac057

Please sign in to comment.