Im trying to get 2 content "boxes" in one md-card. One where the user can enter some textfields, and on the other side i want a logo.
<md-card ng-controller="AuthenticationController">
<md-content class="left_side" layout-align="center center">
</md-content>
<md-content class="right_side" layout-align="right">
</md-content>
</md-card>
CSS
.left_side {
height: 100%;
width: 50%;
background-color: blue;
display: flex;
}
.right_side {
height: 100%;
width: 50%;
background-color: red;
display: flex;
margin-right: 0px;
}
I think it's quite simple, but somehow i keep thinking wrong, because i dont get it.