Skip to content

Commit 1fbda6c

Browse files
committed
fix issues with design
1 parent ac36f67 commit 1fbda6c

5 files changed

Lines changed: 4 additions & 3 deletions

File tree

projects/skills/src/app/profile/shared/personal-rating-card/personal-rating-card.component.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121

2222
&__name {
2323
color: var(--black);
24-
text-decoration: underline;
2524

2625
@include typography.heading-4;
2726

projects/skills/src/app/profile/shared/personal-skill-card/personal-skill-card.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
&__name {
2424
color: var(--black);
25+
text-decoration: underline;
2526

2627
@include typography.heading-4;
2728

projects/skills/src/app/profile/shared/progress-block/progress-block.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
background-color: var(--white);
1414
border: 1px solid var(--grey-button);
1515
border-radius: 15px;
16+
min-height: 365px;
1617

1718
@include responsive.apply-desktop {
1819
display: flex;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.skills {
55
&__main {
66
position: relative;
7-
min-height: 345px;
7+
min-height: 365px;
88
padding: 20px;
99
margin-bottom: 18px;
1010
background-color: var(--white);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export class ProfileMainComponent implements OnInit, AfterViewInit, OnDestroy {
8181
loggedUserId: Observable<number> = this.authService.profile.pipe(map(user => user.id));
8282

8383
ngOnInit(): void {
84-
// this.profileSkillsService.getSubscriptionData().subscribe(r => console.log(r));
84+
this.profileSkillsService.getSubscriptionData().subscribe(r => console.log(r));
8585

8686
const route$ = this.route.params
8787
.pipe(

0 commit comments

Comments
 (0)