summaryrefslogtreecommitdiff
path: root/admin/src/components/Header
diff options
context:
space:
mode:
authorBlaster4385 <[email protected]>2022-08-25 14:41:02 +0530
committerBlaster4385 <[email protected]>2022-08-25 14:41:02 +0530
commitbf896ba45a22227a545d0bf7f034d22cb4778f1e (patch)
tree4bc04c81a83f6ca7187aefbd7ee32b9d2f0a51aa /admin/src/components/Header
parent54a27fb52551069fa6d40c6f5941c5d49c0f0506 (diff)
accordion fix
Diffstat (limited to 'admin/src/components/Header')
-rw-r--r--admin/src/components/Header/Header.jsx2
-rw-r--r--admin/src/components/Header/Header.module.css10
2 files changed, 6 insertions, 6 deletions
diff --git a/admin/src/components/Header/Header.jsx b/admin/src/components/Header/Header.jsx
index d90aafe..a6e8523 100644
--- a/admin/src/components/Header/Header.jsx
+++ b/admin/src/components/Header/Header.jsx
@@ -4,7 +4,7 @@ import styles from './Header.module.css'
const Header = ({ subheading }) => {
return (
<header className={styles.header}>
- <h1 className={styles.header__heading}>AADHAAR</h1>
+ <img src={`${process.env.PUBLIC_URL}/favicon.ico`} className={styles.header__image}/>
<h3 className={styles.header__subheading}>{subheading}</h3>
</header>
)
diff --git a/admin/src/components/Header/Header.module.css b/admin/src/components/Header/Header.module.css
index 8e6084f..c67df95 100644
--- a/admin/src/components/Header/Header.module.css
+++ b/admin/src/components/Header/Header.module.css
@@ -9,12 +9,12 @@
padding: 20px;
}
-.header__heading {
- font-size: var(--font-large);
- font-weight: 400;
-}
-
.header__subheading {
font-size: var(--font-medium);
font-weight: 400;
}
+
+.header__image {
+ width: 150px;
+ height: 150px;
+}