App.css (369B)
1 .App { 2 margin-bottom: 30px; 3 } 4 .add-button { 5 outline: none; 6 border: none; 7 border-radius: 9999px; 8 background: green; 9 font-size: 24px; 10 color: white; 11 opacity: 0.8; 12 height: 32px; 13 width: 32px; 14 display: inline-flex; 15 justify-content: center; 16 align-items: center; 17 } 18 19 .add-button:hover { 20 cursor: pointer; 21 opacity: 1; 22 }