Skip to content

Commit 584e352

Browse files
authored
Revert logo in templates (#7830)
1 parent b4068f2 commit 584e352

File tree

10 files changed

+38
-4
lines changed

10 files changed

+38
-4
lines changed
Binary file not shown.
Loading
Loading

packages/react-scripts/template-typescript/src/App.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
}
44

55
.App-logo {
6+
animation: App-logo-spin infinite 20s linear;
67
height: 40vmin;
8+
pointer-events: none;
79
}
810

911
.App-header {
@@ -18,5 +20,14 @@
1820
}
1921

2022
.App-link {
21-
color: #09d3ac;
23+
color: #61dafb;
24+
}
25+
26+
@keyframes App-logo-spin {
27+
from {
28+
transform: rotate(0deg);
29+
}
30+
to {
31+
transform: rotate(360deg);
32+
}
2233
}
Lines changed: 7 additions & 1 deletion
Loading
Binary file not shown.
Loading
Loading

packages/react-scripts/template/src/App.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
}
44

55
.App-logo {
6+
animation: App-logo-spin infinite 20s linear;
67
height: 40vmin;
8+
pointer-events: none;
79
}
810

911
.App-header {
@@ -18,5 +20,14 @@
1820
}
1921

2022
.App-link {
21-
color: #09d3ac;
23+
color: #61dafb;
24+
}
25+
26+
@keyframes App-logo-spin {
27+
from {
28+
transform: rotate(0deg);
29+
}
30+
to {
31+
transform: rotate(360deg);
32+
}
2233
}

0 commit comments

Comments
 (0)