Skip to content

Commit

Permalink
fix UI of navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
hoapooh committed Jul 22, 2024
1 parent 4784c67 commit ee9f7be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
{
<div class="news__cards_item">
<a href="@Url.Action("NewsDetail", "News", new { newsID = news.ID })">
<img src="@news.ThumbNail" alt="" loading="lazy" />
<img src="@news.ThumbNail" alt="@news?.Title" loading="lazy" />
</a>
<p class="news__cards_item--title">
<a href="@Url.Action("NewsDetail", "News", new { newsID = news.ID })">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<div class="newsItem__thumb">
<a href="@Url.Action("NewsDetail", "News", new { newsID = news.ID })" aria-label="@news?.Title">
<img src="@news.ThumbNail"
alt="thumbnail" loading="lazy" />
alt="@news?.Title" loading="lazy" />
</a>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ a {
display: flex;
align-items: center;
justify-content: center;
margin-left: 139px;
margin-left: 20%;
list-style-type: none;
margin-bottom: 0;
}
Expand Down

0 comments on commit ee9f7be

Please sign in to comment.