diff --git a/src/App.css b/src/App.css index 23e2131..00c92fe 100644 --- a/src/App.css +++ b/src/App.css @@ -189,7 +189,14 @@ img { } /* styling the footer ..................................................................................................*/ +.footer { + padding: 30px; +} +.footer .footer-logo { + display: flex; + justify-content: center; +} .inFooter-container { display: flex; @@ -214,6 +221,10 @@ img { border-radius: 15px; } +.footer div h4 { + margin-top: 0; +} + .footer div ul { margin-left: 0px; padding-left: 0px; @@ -229,7 +240,13 @@ img { } .footer div ul li a:hover { - color: #F4CE14; + color: burlywood; +} + +.footer hr { + height: 10px; + background-color: burlywood; + border: none; } /* styling the main section .................................................................................................................................*/ diff --git a/src/Components/footer.js b/src/Components/footer.js index 38c1f7c..86d4a61 100644 --- a/src/Components/footer.js +++ b/src/Components/footer.js @@ -1,5 +1,6 @@ import React, {Component} from "react"; import { NavLink } from "react-router-dom"; +import Logo from "./Logo"; import restaurant from './assets/restaurant.jpg' class Footer extends Component { @@ -11,6 +12,9 @@ class Footer extends Component { render() { return( ); }