summaryrefslogtreecommitdiff
path: root/client/src/components/Header/Header.jsx
diff options
context:
space:
mode:
authorBlaster4385 <[email protected]>2022-08-17 09:27:12 +0530
committerBlaster4385 <[email protected]>2022-08-17 16:40:35 +0530
commit045bcc1af6579e1a6023f199fbb6e9ca725bd497 (patch)
tree1ace2040454aa0c9a7d854ee6f74b01ee13f305d /client/src/components/Header/Header.jsx
parenta6489c671275fc9bf21ec6bdd7db4cb47da86f2c (diff)
Replace alerts with toasts and fix header image size
Diffstat (limited to 'client/src/components/Header/Header.jsx')
-rw-r--r--client/src/components/Header/Header.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/components/Header/Header.jsx b/client/src/components/Header/Header.jsx
index d5e08c4..a6e8523 100644
--- a/client/src/components/Header/Header.jsx
+++ b/client/src/components/Header/Header.jsx
@@ -4,7 +4,7 @@ import styles from './Header.module.css'
const Header = ({ subheading }) => {
return (
<header className={styles.header}>
- <img src={`${process.env.PUBLIC_URL}/favicon.ico`} />
+ <img src={`${process.env.PUBLIC_URL}/favicon.ico`} className={styles.header__image}/>
<h3 className={styles.header__subheading}>{subheading}</h3>
</header>
)