fix(style): align page head content

This commit is contained in:
sokumon 2025-01-02 21:06:16 +05:30
parent ded8cdfcb7
commit 210ae482f3
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,6 @@
<div class="page-head flex">
<div class="container">
<div class="row flex align-center page-head-content justify-between">
<div class="row flex-nowrap align-center page-head-content justify-between">
<div class="col-md-4 col-sm-6 col-xs-7 page-title">
<!-- <div class="title-image hide hidden-md hidden-lg"></div> -->
<!-- title -->

View file

@ -7,6 +7,11 @@
flex-direction: column;
}
.flex-nowrap {
@extend .flex;
flex-wrap: nowrap;
}
.justify-center {
justify-content: center;
}