diff options
author | Blaster4385 <[email protected]> | 2022-08-17 09:27:12 +0530 |
---|---|---|
committer | Blaster4385 <[email protected]> | 2022-08-17 16:40:35 +0530 |
commit | 045bcc1af6579e1a6023f199fbb6e9ca725bd497 (patch) | |
tree | 1ace2040454aa0c9a7d854ee6f74b01ee13f305d /client/src/components | |
parent | a6489c671275fc9bf21ec6bdd7db4cb47da86f2c (diff) |
Replace alerts with toasts and fix header image size
Diffstat (limited to 'client/src/components')
-rw-r--r-- | client/src/components/Header/Header.jsx | 2 | ||||
-rw-r--r-- | client/src/components/Header/Header.module.css | 5 |
2 files changed, 6 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> ) diff --git a/client/src/components/Header/Header.module.css b/client/src/components/Header/Header.module.css index 2214f1b..c67df95 100644 --- a/client/src/components/Header/Header.module.css +++ b/client/src/components/Header/Header.module.css @@ -13,3 +13,8 @@ font-size: var(--font-medium); font-weight: 400; } + +.header__image { + width: 150px; + height: 150px; +} |