Skip to content

Commit 75a82f6

Browse files
committed
fix styles in program-content, vacancy__skills, tag
1 parent bf52b92 commit 75a82f6

6 files changed

Lines changed: 9 additions & 5 deletions

File tree

projects/social_platform/src/app/office/features/project-rating/project-rating.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
&__columns {
1212
display: flex;
1313
align-items: center;
14+
flex-direction: column;
1415
}
1516

1617
&__field {

projects/social_platform/src/app/office/features/vacancy-card/vacancy-card.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h3 class="text-body-12 vacancy__role">{{ vacancy.role }}</h3>
1818
vacancy.specialization ? vacancy.specialization : ""
1919
}}</app-tag>
2020
} } @if (vacancy.requiredSkills.length > 5) {
21-
<p class="text-body-12 vacancy__requirements--more">
21+
<p class="text-body-10 vacancy__requirements--more">
2222
+ {{ vacancy.requiredSkills.length - 5 }}
2323
</p>
2424
} }

projects/social_platform/src/app/office/features/vacancy-card/vacancy-card.component.scss

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

3333
&__skills {
3434
display: flex;
35-
flex-flow: row wrap;
35+
flex-wrap: wrap;
3636
gap: 10px;
3737
align-items: center;
3838
}

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141

4242
@include responsive.apply-desktop {
4343
grid-row-start: unset;
44+
min-width: 0;
45+
overflow: hidden;
46+
word-break: break-word;
4447
}
4548
}
4649

projects/social_platform/src/app/office/program/detail/shared/news-card/news-card.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@
5656
</ul>
5757
} @if (newsTextExpandable && !editMode) {
5858
<div
59-
class="read-more"
59+
class="read-more text-body-10"
6060
(click)="onExpandNewsText(newsTextEl?.nativeElement, 'expanded', readMore)"
6161
>
62-
{{ readMore ? "Скрыть" : "Читать полностью" }}
62+
{{ readMore ? "скрыть" : "читать полностью" }}
6363
</div>
6464
} @if (!editMode) {
6565
<div class="card__gallery">

projects/social_platform/src/app/ui/components/tag/tag.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
}
3737

3838
&.tag--soft {
39-
color: var(--gold);
39+
color: var(--light-white);
4040
background: var(--gold);
4141
border: transparent;
4242
}

0 commit comments

Comments
 (0)