Skip to content

Commit 7835c51

Browse files
committed
new player death icon
1 parent a0f6de1 commit 7835c51

File tree

3 files changed

+83
-12
lines changed

3 files changed

+83
-12
lines changed

web/src/Player/PlayerApp.css

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:root {
2-
--TColor: #C7A247;
3-
--CTColor: #4F9EDE;
2+
--TColor: #c7a247;
3+
--CTColor: #4f9ede;
44
--BlackColor: #0c0f12;
55
--LightColor: #ccba7c;
66
--DarkColor: #413a27;
@@ -14,7 +14,8 @@
1414
color: var(--CTColor);
1515
}
1616

17-
html, body {
17+
html,
18+
body {
1819
height: 100%;
1920
margin: 0 auto;
2021
padding: 0;
@@ -50,7 +51,7 @@ html, body {
5051
}
5152

5253
.dead {
53-
background-image: url("./assets/icons/csgo/dead.svg");
54+
background-image: url("./assets/icons/csgo/death.svg");
5455
background-repeat: no-repeat;
5556
background-size: contain;
5657
background-position: center;
@@ -82,8 +83,12 @@ html, body {
8283
}
8384

8485
@keyframes spin {
85-
0% { transform: rotate(0deg); }
86-
100% { transform: rotate(360deg); }
86+
0% {
87+
transform: rotate(0deg);
88+
}
89+
100% {
90+
transform: rotate(360deg);
91+
}
8792
}
8893

8994
.loading-overlay {

web/src/Player/assets/icons/csgo/dead.svg

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 72 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)