JSFiddle - React, Tailwind, and code Playground
HTML
<mat-card class="card-container">
<mat-card-title class="card-container-center"> Test message </mat-card-title>
<mat-card-title class="card-container-left"> Test message </mat-card-title>
</mat-card>
SCSS
.card-container {
/* not needed styles to reflect it */
background: blue;
padding: 10px;
color: white;
/* needed styles below */
display: flex;
justify-content: space-between;
width: 500px;
}