@@ -1,8 +1,8 @@ | |||||
.header { | |||||
ion-header { | |||||
background-color: black; | background-color: black; | ||||
height: 12vh; | height: 12vh; | ||||
div { | |||||
.header { | |||||
display: flex; | display: flex; | ||||
justify-content: space-between; | justify-content: space-between; | ||||
@@ -11,8 +11,8 @@ | |||||
margin-left: 2rem; | margin-left: 2rem; | ||||
margin-right: 1rem; | margin-right: 1rem; | ||||
ion-icon { | ion-icon { | ||||
width: 12rem; | |||||
height: 10rem; | |||||
width: 33vw; | |||||
height: 5vh; | |||||
} | } | ||||
.profile { | .profile { | ||||
@@ -1,16 +1,16 @@ | |||||
import { IonIcon } from '@ionic/react'; | |||||
import { IonHeader, IonIcon } from '@ionic/react'; | |||||
import logo from '../../assets/icons/Logo.svg'; | import logo from '../../assets/icons/Logo.svg'; | ||||
import styles from './Header.module.scss'; | import styles from './Header.module.scss'; | ||||
const Header: React.FC = () => { | const Header: React.FC = () => { | ||||
return ( | return ( | ||||
<div className={styles.header}> | |||||
<div> | |||||
<IonHeader> | |||||
<div className={styles.header}> | |||||
<IonIcon src={logo}></IonIcon> | <IonIcon src={logo}></IonIcon> | ||||
<div className={styles.profile}></div> | <div className={styles.profile}></div> | ||||
</div> | </div> | ||||
</div> | |||||
</IonHeader> | |||||
) | ) | ||||
} | } | ||||
@@ -2,13 +2,14 @@ import styles from './InterviewRounds.module.scss'; | |||||
import Button from "../../components/button/Button"; | import Button from "../../components/button/Button"; | ||||
import Header from "./Header"; | import Header from "./Header"; | ||||
import { IonHeader, IonPage } from '@ionic/react'; | |||||
const InterviewRounds: React.FC = () => { | const InterviewRounds: React.FC = () => { | ||||
return ( | return ( | ||||
<div> | |||||
<IonPage> | |||||
<Header /> | <Header /> | ||||
</IonPage> | |||||
</div> | |||||
) | ) | ||||
} | } | ||||