Skip to content

Commit 8a5fb8d

Browse files
authored
fix: loading animations (#34) (#35)
The animations when repositories or alerts loading was not good. It was played clockwise but was not relevant with the arrows in the image. The suitable animation is inverse clockwise. Closes #34 Assisted-by: Claude Sonent 4.6 (OpenCode, LLMProxy) Signed-off-by: Pierre-Yves Lapersonne <pierreyves.lapersonne@orange.com>
1 parent 9891292 commit 8a5fb8d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/shared/components/alerts-list/alerts-list.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,6 @@
230230
transform: rotate(0deg);
231231
}
232232
to {
233-
transform: rotate(360deg);
233+
transform: rotate(-360deg);
234234
}
235235
}

src/app/shared/components/header/header.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
transform: rotate(0deg);
9595
}
9696
to {
97-
transform: rotate(360deg);
97+
transform: rotate(-360deg);
9898
}
9999
}
100100

src/app/shared/components/settings-panel/settings-panel.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@
238238
transform: rotate(0deg);
239239
}
240240
to {
241-
transform: rotate(360deg);
241+
transform: rotate(-360deg);
242242
}
243243
}
244244

0 commit comments

Comments
 (0)