Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 522ba70

Browse files
committed
Finished basics of first page
1 parent b959881 commit 522ba70

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

app/profile/about/about.jade

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@
3333
ng-if="profileVm.categories[track].length > 0"
3434
)
3535

36-
img(ng-src="images/ico-track-{{vm.imgMap[track]}}-outline.svg")
37-
.name {{track}}
36+
.name
37+
img(ng-src="images/ico-track-{{vm.imgMap[track]}}-outline.svg")
38+
| {{track}}
3839

3940
.subtrack(
4041
ng-repeat="subtrack in profileVm.categories[track]",
@@ -57,6 +58,8 @@
5758

5859
.tag Fulfillment
5960

61+
.arrow >
62+
6063
hr
6164

6265
tc-section(state="profileVm.status.skills")

assets/css/profile/about.scss

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,24 @@
1717
align-items: center;
1818
margin: 10px 0;
1919
.track {
20+
margin-top: 22.4px;
2021
display: flex;
2122
flex-direction: column;
2223
cursor: pointer;
2324

2425
.name {
26+
img {
27+
height: 21px;
28+
width: 21px;
29+
margin-right: 5.5px;
30+
margin-bottom: -3px;
31+
}
2532
margin: auto;
2633
font-family: 'Sofia Pro';
2734
font-weight: 200;
2835
font-size: 19.6px;
2936
line-height: 24px;
37+
margin-bottom: 10.6px;
3038
}
3139
.subtrack {
3240
display: flex;
@@ -63,6 +71,15 @@
6371
font-weight: normal;
6472
}
6573
}
74+
.arrow {
75+
font-family: 'Sofia Pro';
76+
font-weight: 200;
77+
color: #cccccc;
78+
font-size: 18px;
79+
display: flex;
80+
flex-direction: column;
81+
justify-content: center;
82+
}
6683
}
6784
.icon {
6885
width: 80px;

0 commit comments

Comments
 (0)