@Satjeet2005
Aaron
@aaronAlienAll comments
- @aaronAlien
- consider adding a wrapper:
- applying flex and vh selectors to here will push the .attribution content to the bottom and still keep everything centered.
<div class="wrapper"> *your card content* </div>
.wrapper { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100vh; }
:)
- consider adding a wrapper: