-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(headers): harmonize page headers
- use primary color - use condense style on ios
- Loading branch information
1 parent
5646258
commit b520bbb
Showing
6 changed files
with
103 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ export const AboutPage: React.FC = () => { | |
|
||
return ( | ||
<IonPage> | ||
<IonHeader translucent={true}> | ||
<IonHeader> | ||
<IonToolbar color="primary"> | ||
<IonButtons slot="start"> | ||
<IonMenuButton /> | ||
|
@@ -32,54 +32,56 @@ export const AboutPage: React.FC = () => { | |
</IonToolbar> | ||
</IonHeader> | ||
|
||
<IonContent fullscreen={true}> | ||
<IonContent color="primary" fullscreen> | ||
<IonHeader collapse="condense"> | ||
<IonToolbar> | ||
<IonToolbar color="primary"> | ||
<IonTitle size="large">{t('ABOUT.TITLE')}</IonTitle> | ||
</IonToolbar> | ||
</IonHeader> | ||
<IonGrid class="ion-padding ion-text-justify"> | ||
<IonRow class="ion-justify-content-center"> | ||
<IonCol size="12" sizeSm="6"> | ||
<IonImg src={t('ABOUT.IMAGE.01.FILENAME')} /> | ||
<p>{t('ABOUT.TEXT.PARAGRAPH.01')}</p> | ||
<p>{t('ABOUT.TEXT.PARAGRAPH.02')}</p> | ||
<p>{t('ABOUT.TEXT.PARAGRAPH.03')}</p> | ||
<IonItem | ||
lines="none" | ||
href="https://makingmorehealth.org" | ||
target="_blank" | ||
> | ||
<IonIcon icon={globe} slot="start" /> | ||
<IonLabel>makingmorehealth.org</IonLabel> | ||
</IonItem> | ||
<IonItem | ||
lines="none" | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
> | ||
<IonIcon icon={mail} slot="start" /> | ||
<IonLabel>[email protected]</IonLabel> | ||
</IonItem> | ||
<IonItem | ||
lines="none" | ||
href="https://www.facebook.com/makingmorehealth" | ||
target="_blank" | ||
> | ||
<IonIcon icon={logoFacebook} slot="start" /> | ||
<IonLabel>@makingmorehealth</IonLabel> | ||
</IonItem> | ||
<IonItem | ||
lines="none" | ||
href="https://www.linkedin.com/company/making-more-health1/" | ||
target="_blank" | ||
> | ||
<IonIcon icon={logoLinkedin} slot="start" /> | ||
<IonLabel>Making More Health</IonLabel> | ||
</IonItem> | ||
</IonCol> | ||
</IonRow> | ||
</IonGrid> | ||
<div className="app-background app-fullscreen"> | ||
<IonGrid class="ion-padding ion-text-justify"> | ||
<IonRow class="ion-justify-content-center"> | ||
<IonCol size="12" sizeSm="6"> | ||
<IonImg src={t('ABOUT.IMAGE.01.FILENAME')} /> | ||
<p>{t('ABOUT.TEXT.PARAGRAPH.01')}</p> | ||
<p>{t('ABOUT.TEXT.PARAGRAPH.02')}</p> | ||
<p>{t('ABOUT.TEXT.PARAGRAPH.03')}</p> | ||
<IonItem | ||
lines="none" | ||
href="https://makingmorehealth.org" | ||
target="_blank" | ||
> | ||
<IonIcon icon={globe} slot="start" /> | ||
<IonLabel>makingmorehealth.org</IonLabel> | ||
</IonItem> | ||
<IonItem | ||
lines="none" | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
> | ||
<IonIcon icon={mail} slot="start" /> | ||
<IonLabel>[email protected]</IonLabel> | ||
</IonItem> | ||
<IonItem | ||
lines="none" | ||
href="https://www.facebook.com/makingmorehealth" | ||
target="_blank" | ||
> | ||
<IonIcon icon={logoFacebook} slot="start" /> | ||
<IonLabel>@makingmorehealth</IonLabel> | ||
</IonItem> | ||
<IonItem | ||
lines="none" | ||
href="https://www.linkedin.com/company/making-more-health1/" | ||
target="_blank" | ||
> | ||
<IonIcon icon={logoLinkedin} slot="start" /> | ||
<IonLabel>Making More Health</IonLabel> | ||
</IonItem> | ||
</IonCol> | ||
</IonRow> | ||
</IonGrid> | ||
</div> | ||
</IonContent> | ||
</IonPage> | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters