App.css 249 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
body {
  background-color: #f5fcff;
}

.App--logo {
  animation: spin infinite 20s linear;
  border-radius: 50%;
  vertical-align: middle;
  width: 38px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
Dan Abramov's avatar
Dan Abramov committed
15
}