From 3bcd0f71f5db2840b2e00e4c14937852624eae11 Mon Sep 17 00:00:00 2001 From: Ajay_S Date: Tue, 26 Apr 2022 18:06:10 +0530 Subject: [PATCH] styles celebrations page component --- src/pages/celebration/Celebration.tsx | 22 +++++++-- src/pages/celebration/celebration.module.scss | 49 +++++++++++++++++++ 2 files changed, 68 insertions(+), 3 deletions(-) diff --git a/src/pages/celebration/Celebration.tsx b/src/pages/celebration/Celebration.tsx index 27eb525..a0e1ce7 100644 --- a/src/pages/celebration/Celebration.tsx +++ b/src/pages/celebration/Celebration.tsx @@ -1,11 +1,27 @@ -import styles from "./Celebration.module.scss"; -import { IonPage } from "@ionic/react"; +import styles from "./celebration.module.scss"; +import { IonButton, IonContent, IonIcon, IonPage } from "@ionic/react"; +import StepHeader from "../../components/stepsHeader/StepHeader"; +import celebration from "../../assets/icons/Celebrations.svg"; +import { Link } from "react-router-dom"; const Celebration: React.FC = () => { return ( + + +
+ +

We have verified your Docs

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. +

+
+ + Join workex + -
+ + ); } diff --git a/src/pages/celebration/celebration.module.scss b/src/pages/celebration/celebration.module.scss index e69de29..56faac2 100644 --- a/src/pages/celebration/celebration.module.scss +++ b/src/pages/celebration/celebration.module.scss @@ -0,0 +1,49 @@ +.celebrationContent { + + .celebrationDescription { + height: 75vh; + ion-icon { + width: 12.8rem; + height: 12.8rem; + width: 100%; + margin: 0 auto; + margin-top: 4vh; + } + + .heading { + color: lighten($color: #363636, $amount: 10%); + font-size: 2.4rem; + font-weight: 300; + text-align: center; + width: 90%; + margin: 0 auto; + margin-top: 4vh; + } + + .description { + font-size: 1.4rem; + color: #868686; + text-align: center; + width: 90%; + margin: 0 auto; + margin-top: 4vh + } + } + + + + + a { + text-decoration: none; + } + + ion-button { + width: 95%; + margin: 0 auto; + height: 5rem; + margin-bottom: 0; + --background: var(--primary-button-color); + } + + +}