Skip to content

Commit

Permalink
Resolved conflicts for Details page
Browse files Browse the repository at this point in the history
  • Loading branch information
Sakibft committed Sep 22, 2024
2 parents ab13afd + 712b2c0 commit 91b4295
Show file tree
Hide file tree
Showing 10 changed files with 588 additions and 5 deletions.
197 changes: 196 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-image-magnify": "^2.7.4",
"react-router-dom": "^6.26.2",
"swiper": "^11.1.14"
},
Expand Down
Binary file added public/Details-page-img/detailsImg1.webp
Binary file not shown.
Binary file added public/Details-page-img/detailsImg2.webp
Binary file not shown.
Binary file added public/Details-page-img/detailsImg3.webp
Binary file not shown.
29 changes: 25 additions & 4 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;
Expand All @@ -17,21 +20,39 @@ code {
}



@layer components {
.btn-primary {
@apply flex items-center gap-2 bg-primary whitespace-nowrap
py-1 px-2 text-white text-sm font-normal cursor-pointer rounded hover:bg-[#BF2718] transition-all duration-300 ease-linear capitalize;
}
.btn-secondary {
@apply py-3 px-6 md:px-8 text-sm md:text-xl bg-primary text-white font-semibold cursor-pointer hover:bg-[#BF2718] transition-all duration-300 ease-linear border-none capitalize;
@apply py-3 px-6 text-sm bg-primary text-white font-semibold cursor-pointer hover:bg-[#BF2718] transition-all duration-300 ease-linear border-none capitalize;
}
}

.section-to-section-margin{
@apply mt-8 mb-8 md:mt-16 md:mb-16 lg:mt-24 lg:mb-24;

@layer utilities {

.section-to-section-margin{
@apply mt-8 mb-8 md:mt-16 md:mb-16 lg:mt-24 lg:mb-24;
}
.scrollbar-none::-webkit-scrollbar {
display: none;
}

.scrollbar-none {
-ms-overflow-style: none; /* Internet Explorer and Edge */
scrollbar-width: none; /* Firefox */
}
}



.inter{
font-family: "Inter", system-ui;
}
}


/* */

Loading

0 comments on commit 91b4295

Please sign in to comment.