Latest comments
- @helloredfoxSubmitted almost 2 years ago@JackNotroPosted almost 2 years ago
The only problem you have is with centering the summary card element... you should have applied flex on the body and centered the items... and add a container for the summary card element and add the credits there. css fixing:
body{display:flex; align-items: center; justify-content:center;}
html fixing:<div class="outer-container"><div class="summary-card-container"></div> *credits here</div>
0