/ app-1 / src / components / MultistepFormWithReducer / multistepForm.css
multistepForm.css
 1  /* Your CSS goes here */
 2  
 3  h1 {
 4    text-align: center;
 5  }
 6  
 7  progress {
 8    accent-color: var(--yellow);
 9    width: 100%;
10  }
11  
12  form {
13    display: grid;
14    gap: 16px;
15  }
16  
17  button {
18    width: 100%;
19  }
20  
21  table {
22    font-size: 14px;
23    font-family: monospace;
24    position: relative;
25    width: 100%;
26    border: 1px solid var(--charcoal);
27  }
28  
29  thead th:not(:first-child) {
30    text-align: left;
31  }
32  
33  th,
34  td {
35    padding: 4px 8px;
36  }
37  
38  th {
39    background: var(--charcoal);
40  }
41  
42  td {
43    border: 1px solid var(--charcoal);
44    width: 100%;
45  }