Skip to content

Commit e4aa98a

Browse files
committed
fix some design in profile
1 parent cb45770 commit e4aa98a

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

projects/skills/src/app/profile/shared/skills-block/skills-block.component.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ <h2 class="skills__title">Навыки</h2>
2121
[personalRatingCardData]="skill"
2222
></app-personal-rating-card>
2323
} @empty {
24-
<p class="skills__placeholder-text">
24+
<!-- <p class="skills__placeholder-text">
2525
выберите навыки,которые Вы будете развивать в этом месяце
26-
</p>
27-
<app-button class="skills__select" (click)="openInstruction = true">Выбрать</app-button>
26+
</p> -->
27+
28+
<p class="skills__placeholder-text">начините проходить навыки, чтобы увидеть свой прогресс</p>
29+
<!-- <app-button class="skills__select" (click)="openInstruction = true">Выбрать</app-button> -->
2830
} @if (displayedSkills.length) {
2931
<div class="skills_pagination">
3032
<div class="skills_pages">

projects/skills/src/app/profile/skills-rating/skills-rating.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- @format -->
22

33
<div class="rating">
4-
<h1 class="rating__title">Навыки месяца</h1>
4+
<h1 class="rating__title">Навыки</h1>
55
<div class="rating__list">
66
@for (skill of skillsList; track $index) {
77
<div style="cursor: pointer" [routerLink]="['/skills', skill.skillId]">

projects/skills/src/app/subscription/subscription.component.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@
6868
}
6969

7070
&__tariffs {
71-
display: flex;
72-
flex-direction: column;
73-
gap: 20px;
74-
justify-content: center;
75-
71+
display: grid;
72+
grid-template-columns: 1fr;
73+
gird-template-rows: 1fr;
74+
grid-gap: 12px;
75+
7676
@include responsive.apply-desktop {
77-
flex-direction: row;
77+
grid-template-columns: repeat(3, 1fr);
7878
margin-top: 16px;
7979
}
8080
}

0 commit comments

Comments
 (0)