Skip to content

Commit 6092864

Browse files
committed
change design of main stage, contacts, vacancies & upload-file, textarea, input, select components
1 parent c65546a commit 6092864

79 files changed

Lines changed: 764 additions & 636 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

projects/social_platform/src/app/office/chat/chat-direct/chat-direct/chat-direct.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
flex-grow: 1;
1616
overflow: hidden;
1717
border: 1px solid var(--medium-grey-for-outline);
18-
border-radius: 15px;
18+
border-radius: var(--rounded-xl);
1919
}
2020

2121
&__header {

projects/social_platform/src/app/office/chat/chat.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
&__list {
77
overflow: hidden;
88
border: 1px solid var(--grey-button);
9-
border-radius: 15px;
9+
border-radius: var(--rounded-xl);
1010
}
1111
}

projects/social_platform/src/app/office/feed/filter/feed-filter.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
margin-bottom: 20px;
1616
background-color: var(--white);
1717
border: 1px solid var(--medium-grey-for-outline);
18-
border-radius: 15px;
18+
border-radius: var(--rounded-xl);
1919

2020
@include responsive.apply-desktop {
2121
display: flex;

projects/social_platform/src/app/office/feed/shared/closed-vacancy/closed-vacancy.component.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
padding: 20px;
66
background-color: var(--white);
77
border: 1px solid var(--medium-grey-for-outline);
8-
border-radius: 15px;
8+
border-radius: var(--rounded-xl);
99

1010
&__head {
1111
margin-bottom: 10px;
@@ -68,7 +68,7 @@
6868
justify-content: space-between;
6969
padding: 10px 20px;
7070
border: 1px solid var(--medium-grey-for-outline);
71-
border-radius: 15px;
71+
border-radius: var(--rounded-xl);
7272
}
7373

7474
&__job {
@@ -77,7 +77,7 @@
7777
margin-bottom: 15px;
7878
text-align: center;
7979
border: 1px solid var(--medium-grey-for-outline);
80-
border-radius: 15px;
80+
border-radius: var(--rounded-xl);
8181

8282
@include typography.bold-body-14;
8383

projects/social_platform/src/app/office/feed/shared/new-project/new-project.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
padding: 20px;
99
background-color: var(--white);
1010
border: 1px solid var(--medium-grey-for-outline);
11-
border-radius: 15px;
11+
border-radius: var(--rounded-xl);
1212

1313
&__title {
1414
display: flex;

projects/social_platform/src/app/office/feed/shared/open-vacancy/open-vacancy.component.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
padding: 20px;
3434
background-color: var(--white);
3535
border: 1px solid var(--medium-grey-for-outline);
36-
border-radius: 15px;
36+
border-radius: var(--rounded-xl);
3737

3838
&__head {
3939
margin-bottom: 10px;
@@ -177,7 +177,7 @@
177177
justify-content: space-between;
178178
padding: 10px 20px;
179179
border: 1px solid var(--medium-grey-for-outline);
180-
border-radius: 15px;
180+
border-radius: var(--rounded-xl);
181181
}
182182

183183
&__job {
@@ -187,7 +187,7 @@
187187
text-align: center;
188188
cursor: pointer;
189189
border: 1px solid var(--medium-grey-for-outline);
190-
border-radius: 15px;
190+
border-radius: var(--rounded-xl);
191191

192192
@include typography.bold-body-14;
193193

projects/social_platform/src/app/office/models/project.model.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export class Project {
3636
actuality!: string;
3737
problem!: string;
3838
region!: string;
39-
step!: number;
4039
shortDescription!: string;
4140
achievements!: { id: number; title: string; status: string }[];
4241
industry!: number;
@@ -62,7 +61,6 @@ export class Project {
6261
id: 0,
6362
name: "string",
6463
region: "sdf",
65-
step: 1,
6664
targetAudience: "",
6765
implementationDeadline: "",
6866
actuality: "",

projects/social_platform/src/app/office/onboarding/stage-zero/stage-zero.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
padding: 12px;
136136
overflow: hidden;
137137
border: 1px solid var(--medium-grey-for-outline);
138-
border-radius: 15px;
138+
border-radius: var(--rounded-xl);
139139
}
140140

141141
&__text {

projects/social_platform/src/app/office/onboarding/user-type-card/user-type-card.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
padding: 12px;
66
cursor: pointer;
77
border: 1px solid var(--medium-grey-for-outline);
8-
border-radius: 15px;
8+
border-radius: var(--rounded-xl);
99

1010
@include responsive.apply-desktop {
1111
padding: 20px;

projects/social_platform/src/app/office/profile/detail/main/main.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ $section-padding: 24px;
7474
padding: 24px;
7575
background-color: var(--white);
7676
border: 1px solid var(--medium-grey-for-outline);
77-
border-radius: 15px;
77+
border-radius: var(--rounded-xl);
7878

7979
h3 {
8080
margin-bottom: 12px;

0 commit comments

Comments
 (0)