This commit is contained in:
Oleksandr Shadurskyi 2024-06-20 06:53:51 +00:00 committed by GitHub
commit 6f7b2e8718
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
<div class="row">
@foreach(Employee employee in Model.Employees)
{
<div class="col-sm-3">
<div class="col-sm-3 d-flex align-items-stretch">
<partial name="_Employee" model="employee" />
</div>
}

View file

@ -9,7 +9,7 @@
<div class="row">
@foreach(Employee employee in Model.Employees)
{
<div class="col-sm-3">
<div class="col-sm-3 d-flex align-items-stretch">
<partial name="_Employee" model="employee" />
</div>
}