I have the following sidebar
What I want to achieve here is have the logo centered and the copyright at the bottom of the page.
Here is what I have so far:
HTML
<aside class="flex">
<div class="flex inner_content">
<img src="./img/logo.svg" alt="Logo">
<p>© copyright 2018</p>
</div>
</aside>
CSS
.flex {
align-items: center;
display: flex;
}
aside {
background: url('../img/sidebar-image.jpg') no-repeat center/cover;
height: 20em;
width: 100vw;
float: left;
}
.inner_content {
justify-content: center;
flex-direction: column;
height: inherit;
width: inherit;
}
.inner_content p {
font-size: 14px;
margin-top: 2em;
color: #FFF;
}