format home job list

This commit is contained in:
dev-chiefworks
2022-04-11 19:17:14 -04:00
parent c5a4a5ff6f
commit 8e3b32a90c
2 changed files with 16 additions and 3 deletions
+6
View File
@@ -5,6 +5,12 @@
justify-content: center;
align-items: center;
}
.font_black{
color: black;
}
.font_red{
color: red;
}
.appie-loader {
opacity: 0;
}
+10 -3
View File
@@ -48,7 +48,7 @@ async componentDidMount(){
return (<div className="col-lg-3 col-md-6">
<div
className="appie-blog-item mt-30 wow animated fadeInUp"
className="appie-single-service mt-30 wow animated fadeInUp"
data-wow-duration="3000ms"
data-wow-delay="200ms"
>
@@ -57,13 +57,13 @@ async componentDidMount(){
<h3 className="title">
<a href={dashUrl}>
{i.title}
<span className='font_black'>{i.title} </span>
</a>
</h3>
<div className="blog-meta">
<ul>
<li className="expire">
<a href={dashUrl}>Expires : {postDt}</a>
<a href={dashUrl}><span className='font_red'> Expires : {postDt} </span></a>
</li>
</ul>
</div>
@@ -72,6 +72,13 @@ async componentDidMount(){
</a>
</div>
</div>
</div>)