Skip to content

Commit 1399086

Browse files
committed
fix uppercase in letters & fix tooltip position in team section
1 parent b2eb7ca commit 1399086

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

projects/social_platform/src/app/office/onboarding/stage-three/stage-three.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="page">
44
<div class="auth__greeting">
5-
<h3 class="auth__title">Выберите вашу роль</h3>
5+
<h3 class="auth__title text-heading-3">Выберите вашу роль</h3>
66
</div>
77
<div class="page__list">
88
<app-user-type-card [isActive]="userRole === 1" (click)="onSetRole(1)">

projects/social_platform/src/app/office/profile/edit/edit.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ <h1 class="profile__title">редактирование профиля</h1>
634634
id="descriptionWork"
635635
[error]="descriptionWork | controlError"
636636
type="text"
637-
placeholder="Работал с данными, разрабатывал интерфейсы."
637+
placeholder="работал с данными, разрабатывал интерфейсы."
638638
formControlName="descriptionWork"
639639
[maxLength]="400"
640640
></app-textarea>
@@ -757,7 +757,7 @@ <h1 class="profile__title">редактирование профиля</h1>
757757
<app-textarea
758758
size="big"
759759
[error]="status | controlError"
760-
placeholder="Разработал прототип приложения для менторов в Московской области"
760+
placeholder="разработали прототип приложения для менторов в Московской области"
761761
formControlName="status"
762762
></app-textarea>
763763
@if (status | controlError: "required") {

projects/social_platform/src/app/office/projects/edit/shared/project-main-step/project-main-step.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
size="big"
133133
id="industry"
134134
formControlName="industryId"
135-
placeholder="Выберите сферу проекта"
135+
placeholder="выберите сферу проекта"
136136
[options]="industries"
137137
></app-select>
138138
} @if (industry | controlError: "required") {
@@ -254,7 +254,7 @@
254254
[tooltipWidth]="350"
255255
[error]="(targetAudience | controlError) || projSubmitInitiated"
256256
formControlName="targetAudience"
257-
placeholder="Студенты 2–4 курсов IT и бизнес-направлений"
257+
placeholder="студенты 2–4 курсов IT и бизнес-направлений"
258258
[maxLength]="500"
259259
></app-textarea>
260260
@if ((targetAudience | controlError: "required") || projSubmitInitiated) {

projects/social_platform/src/app/office/projects/edit/shared/project-team-step/project-team-step.component.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@
134134

135135
app-tooltip {
136136
position: absolute;
137-
right: -2%;
138-
bottom: 30%;
137+
right: -1.5%;
138+
bottom: 37%;
139139
}
140140
}
141141
}

0 commit comments

Comments
 (0)