Skip to content

Commit

Permalink
fix(*): fixed public screens
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed Mar 22, 2022
1 parent b0d9ff9 commit 1e68a50
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 13 deletions.
4 changes: 0 additions & 4 deletions src/Components/Footer/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,3 @@ footer p {
margin: 0%;
}
}

.twitter-footer {
overflow: hidden;
}
6 changes: 3 additions & 3 deletions src/Components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React from 'react';
import "./Footer.css";
import {StyledHr} from '../../Layout/Hr/styledHr';
// import {StyledHr} from '../../Layout/Hr/styledHr';

import SocialMediaTags from '../SocialMediaTags/SocialMediaTags';

const Footer = (isHome) => {

const year = new Date().getFullYear();

if (isHome) {
if (isHome == true) {
return (
<>
<footer className="footer">
Expand Down Expand Up @@ -71,7 +71,7 @@ const Footer = (isHome) => {

return (
<>
<StyledHr Primary/>
{/* <StyledHr Primary/> */}
<footer className="footer">
<div className="container bottom_border">
<div className="row">
Expand Down
4 changes: 2 additions & 2 deletions src/Components/SocialMediaTags/SocialMediaTags.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
padding-top: 3rem;
float: left;
margin: 0 auto;
list-style: none;
}

.social_footer_ul li a {
Expand All @@ -25,8 +26,7 @@

@media only screen and (min-width: 768px) {
.social_footer_ul li i {
width: 16px;
height: 16px;
font-size: 2rem;
}
.social_footer_ul li {
padding-left: 16px;
Expand Down
1 change: 0 additions & 1 deletion src/Components/Subscribe/Subscribe.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.subscribe-link {
width: 50%;
margin: 0 auto;
border-radius: 12px;
}
Expand Down
1 change: 0 additions & 1 deletion src/Layout/Button/styledButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ export const StyledButton = styled.button`
box-sizing: inherit;
cursor: pointer;
display: inline-block;
font-size: 1.8em;
margin-bottom: 10px;
padding: 10px 20px;
background-color: transparent;
Expand Down
2 changes: 2 additions & 0 deletions src/Pages/Contact/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react';
import Footer from '../../Components/Footer/Footer';
import ContactForm from '../../Components/Form/ContactForm';
import NavBar from '../../Components/NavBar/NavBar';
import { StyledHr } from '../../Layout/Hr/styledHr';
import './Contact.css'

const Contact = () => {
Expand Down Expand Up @@ -46,6 +47,7 @@ const Contact = () => {
</div>
</div>
</div>
<StyledHr Primary/>
<Footer/>
</>
)
Expand Down
1 change: 1 addition & 0 deletions src/Pages/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const Home = () => {
</a>

</div>
<StyledHr Primary/>
<br />
<div>
<StyledButtonATag Primary href='#top'
Expand Down
8 changes: 6 additions & 2 deletions src/Pages/Projects/Projects.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,14 @@ import './Projects.css';
import {projectData} from './ProjectsData';
import ProjectCard from '../../Components/Cards/project';
import { StyledHr } from '../../Layout/Hr/styledHr';
import NavBar from '../../Components/NavBar/NavBar';
import Footer from '../../Components/Footer/Footer';

const Projects = () => {

return (
<div>
<>
<NavBar/>
<div className='header2'>
<div className='header-logo'>
</div>
Expand All @@ -101,7 +104,8 @@ const Projects = () => {
</>
)
})}
</div>
<Footer/>
</>
)

}
Expand Down

0 comments on commit 1e68a50

Please sign in to comment.