flex align in div code example
Example 1: how to align a flex container center
.table-wrapper {
display: flex;
flex-direction: column;
padding: 2rem;
margin: 0 auto;
}
Example 2: flex box align items
.container {
justify-items: center;
}