瀏覽代碼

completed UI for skill info page

develop
Ajay_S 3 年之前
父節點
當前提交
63b249e6c1
共有 5 個文件被更改,包括 23 次插入16 次删除
  1. +2
    -2
      src/components/stepsHeader/StepsHeader.module.scss
  2. +9
    -8
      src/pages/interviewRounds/StepsDescreption.module.scss
  3. +1
    -1
      src/pages/interviewRounds/StepsDescreption.tsx
  4. +8
    -4
      src/pages/skillInformationStep/SkillInformationStep.module.scss
  5. +3
    -1
      src/pages/skillInformationStep/SkillInformationStep.tsx

+ 2
- 2
src/components/stepsHeader/StepsHeader.module.scss 查看文件

@@ -9,7 +9,7 @@


display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-left: 4rem;
margin-left: 3.5rem;


.step { .step {
color: white; color: white;
@@ -31,7 +31,7 @@
height: 4rem; height: 4rem;
color: white; color: white;
opacity: 0.8; opacity: 0.8;
margin-right: 4rem;
margin-right: 2.8rem;
} }
} }



+ 9
- 8
src/pages/interviewRounds/StepsDescreption.module.scss 查看文件

@@ -60,6 +60,15 @@
animation-iteration-count: 1; animation-iteration-count: 1;
animation-fill-mode: forwards; animation-fill-mode: forwards;


ion-button {
width: 32.8rem;
height: 4rem;
font-weight: 500;
font-size: 1.6rem;
font-family: 'Poppins', sans-serif !important;
--background: var(--primary-button-color);
}

} }
} }


@@ -70,15 +79,7 @@ ion-icon {


} }


ion-button {
width: 32.8rem;
height: 4rem;
font-weight: 500;
font-size: 1.6rem;
font-family: 'Poppins', sans-serif !important;
margin: 0 !important;


}


@keyframes fadeInAnimation { @keyframes fadeInAnimation {
0% { 0% {


+ 1
- 1
src/pages/interviewRounds/StepsDescreption.tsx 查看文件

@@ -41,7 +41,7 @@ const StepsDescription: React.FC<Props> = (props) => {
</div> </div>


<div className={styles.button}> <div className={styles.button}>
<IonButton shape="round" color='success' expand='block'>{props.buttonText}</IonButton>
<IonButton shape="round" expand='block'>{props.buttonText}</IonButton>
</div> </div>


</div> </div>


+ 8
- 4
src/pages/skillInformationStep/SkillInformationStep.module.scss 查看文件

@@ -29,15 +29,19 @@ ion-content {
} }


.skills { .skills {
width: 90%;
display: grid; display: grid;
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
grid-gap: 2rem; grid-gap: 2rem;
margin-left: 1.5rem;
margin: 0 auto;
} }
} }


ion-button {
margin: 5rem 0;
margin-left: 2.5rem;
.button{
ion-button {
margin: 5rem 2rem;
--background: var(--primary-button-color);
}
} }
} }

+ 3
- 1
src/pages/skillInformationStep/SkillInformationStep.tsx 查看文件

@@ -83,7 +83,9 @@ const SkillInformationStep: React.FC = () => {


</div> </div>


<IonButton shape="round" color='success' expand='block'>Done!</IonButton>
<div className={styles.button}>
<IonButton shape="round" expand='block'>Done!</IonButton>
</div>


</IonContent> </IonContent>
</IonPage> </IonPage>


Loading…
取消
儲存