Изменить положение пролета - PullRequest
0 голосов
/ 12 февраля 2019

Как мне изменить положение тега span, чтобы он был в центре рядом со значком?

enter image description here

Это следующий кодв настоящее время:

mat-card-content {
    padding: 50px;
}

.box-position {
    /* margin: 0 auto; */
    text-align: center;
    position: relative;
}

<mat-card>
    <mat-card-content>
        <div class="box-position">
            <mat-icon>warning</mat-icon>
            <span>Page not found!</span>
        </div>
    </mat-card-content>
</mat-card>
...