App.css 468 Bytes
Newer Older
Dan Abramov's avatar
Dan Abramov committed
1
.App {
2
  text-align: center;
3
4
}

Dan Abramov's avatar
Dan Abramov committed
5
.App-logo {
Héliton Nordt's avatar
Héliton Nordt committed
6
  animation: App-logo-spin infinite 20s linear;
7
  height: 40vmin;
8
9
10
}

.App-header {
11
12
13
14
15
16
17
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
18
  color: white;
19
20
}

21
22
.App-link {
  color: #61dafb;
23
24
}

Héliton Nordt's avatar
Héliton Nordt committed
25
@keyframes App-logo-spin {
26
27
28
29
30
31
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
Dan Abramov's avatar
Dan Abramov committed
32
}