Skip to content

Commit

Permalink
Deploy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
VenEleni committed Aug 26, 2024
1 parent 2fa46ed commit bb22265
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions client/src/pages/Eshop.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const Eshop = () => {
<div>
<img src={eshop_img} alt='eshop' className='eshop_banner'/>
</div>
{!selectedProduct && (
<div className="category-title flex justify-center">
<h3 className='text-black top-5 mr-10'>{selectedCategory}</h3>
<div className="search-bar flex justify-center top-4">
Expand All @@ -94,6 +95,7 @@ const Eshop = () => {
/>
</div>
</div>
)}


{selectedProduct ? (
Expand Down
5 changes: 4 additions & 1 deletion client/src/pages/ReadBlog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ const ReadBlog = () => {
<NavBar/>
<div>
<img src={blogs.image} alt={blogs.title} className="blogsImg" />
<div className="title_container flex items-center place-content-center">
<div className="flex items-center place-content-center">
<div className="title_container">
<h1 className="blog_title">{blogs.title}</h1>
</div>
</div>

</div>
<div className="content_container px-40">
{blogs.content ? (
Expand Down

0 comments on commit bb22265

Please sign in to comment.