feat:added favicon and logo

This commit is contained in:
rutik wankhade 2020-08-12 21:42:24 +05:30
parent 41f71d2dc7
commit 7bd539c840
7 changed files with 12 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
src/assets/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
src/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -2,4 +2,8 @@
color:#ffffff; color:#ffffff;
padding-left:40px; padding-left:40px;
background-color: #6272a4; background-color: #6272a4;
} }
.logo{height:25px;
width:25px;
margin-right:10px;}

View File

@ -25,7 +25,6 @@ input{margin:4px;}
padding-left:20px; padding-left:20px;
} }
@media screen and (max-width:600px){ @media screen and (max-width:600px){
.main-container{ .main-container{
display:flex; display:flex;

View File

@ -30,10 +30,12 @@
text-align: center; text-align: center;
color:#676683; color:#676683;
padding:50px 25px 50px 25px;} padding:50px 25px 50px 25px;
border:4px solid #676683;
}
h1{height:auto;} h1{height:auto;}
button{background-color: #282a36; button{background-color: #676683;
color:#ffffff; color:#ffffff;
border:none; border:none;
border-radius:4px; border-radius:4px;

View File

@ -1,11 +1,12 @@
import React from 'react'; import React from 'react';
import './App.css'; import './App.css';
import logo from '../assets/favicon.png';
const Navbar = () => { const Navbar = () => {
return ( return (
<nav className="navbar bg-dark"> <nav className="navbar bg-dark">
<h4>CoverView</h4></nav>);
<h4><img src={logo} alt="logo" className="logo"></img>CoverView</h4></nav>);