Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(#131): Fix color in dark mode #133

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/FounderWord.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const FounderWord = () => {
<div className='text-gray-400 h-1/2 body-font'>
<div className='container px-5 py-2 mb-10 mx-auto justify-center flex flex-wrap'>
<div className='flex w-full mb-5 justify-center flex-wrap'>
<h1 className='text-center sm:text-3xl text-2xl md:font-sans font-bold title-font text-black lg:w-1/3 lg:mb-0 mb-2'>
<h1 className='text-center sm:text-3xl text-2xl md:font-sans font-bold text-black dark:text-white title-font lg:w-1/3 lg:mb-0 mb-2'>
Word from our Founder
</h1>
<br />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Gallery.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const Gallery = () => {
/>

<div className="flex w-full mb-5 justify-center flex-wrap">
<h1 className="sm:text-3xl text-2xl md:font-sans font-bold title-font text-white lg:w-1/3 lg:mb-0 mb-2">
<h1 className="sm:text-3xl text-2xl md:font-sans font-bold title-font text-black dark:text-white lg:w-1/3 lg:mb-0 mb-2">
Some of the Adopted one's
</h1>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/HomeMain.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const HomeMain = () => {
/>
<div className='right flex justify-end w-10/12 lg:5/12 pb-20 lg:p-0'>
<motion.img
initial={{ opacity: 1}}
style={{ y: dogY, opacity: dogOpacity }}
src='/Assets/images/homepageDog.png'
alt='Dog'
Expand Down
2 changes: 1 addition & 1 deletion src/components/TestimonialsMain.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const TestimonialsMain = () => {
<div className='text-gray-400 h-1/2 body-font'>
<div className=' container px-5 py-24 mx-auto justify-center flex flex-wrap'>
<div className='flex w-full mb-5 justify-center flex-wrap'>
<h1 className='text-center sm:text-3xl text-2xl md:font-sans font-bold title-font text-black lg:w-1/3 lg:mb-0 mb-2'>
<h1 className='text-center sm:text-3xl text-2xl md:font-sans font-bold title-font text-black dark:text-white lg:w-1/3 lg:mb-0 mb-2'>
Testimonials
</h1>
</div>
Expand Down
3 changes: 0 additions & 3 deletions src/styles/petDetailMain.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ margin: 0.7rem auto;
font-weight: 700;
font-size: 24px;
line-height: 28px;

color: #000000;
}
.petDetail__infoHeader p,.petDetail__infoBody p{
font-family: Roboto;
Expand All @@ -53,7 +51,6 @@ font-weight: normal;
font-size: 18px;
line-height: 19px;
margin:0.3rem auto;
color: #000000;
}

.petDetail__infoBody h2{
Expand Down