@enure/jacklin 1.3.1 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template.handlebars +8 -2
package/package.json
CHANGED
package/template.handlebars
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
page-break-inside: avoid;
|
|
44
44
|
}
|
|
45
45
|
.WorkList-dates {
|
|
46
|
-
color: #
|
|
46
|
+
color: #777;
|
|
47
47
|
font-size: 14px;
|
|
48
48
|
}
|
|
49
49
|
.WorkList-positionAt {
|
|
@@ -60,6 +60,12 @@
|
|
|
60
60
|
.SummaryList-item {
|
|
61
61
|
margin-bottom: 2px;
|
|
62
62
|
}
|
|
63
|
+
.SummaryList-itemName {
|
|
64
|
+
font-weight: 500;
|
|
65
|
+
}
|
|
66
|
+
.SummaryList-itemPosition {
|
|
67
|
+
color: #999;
|
|
68
|
+
}
|
|
63
69
|
.WorkList-highlights {
|
|
64
70
|
margin-top: 12px;
|
|
65
71
|
display: flex;
|
|
@@ -137,7 +143,7 @@
|
|
|
137
143
|
{{#each work}}
|
|
138
144
|
{{#unless this.isFeatured}}
|
|
139
145
|
<li class="SummaryList-item">
|
|
140
|
-
|
|
146
|
+
<span class="SummaryList-itemName">{{this.name}}</span> <span class="SummaryList-itemPosition">({{this.position}})</span>
|
|
141
147
|
</li>
|
|
142
148
|
{{/unless}}
|
|
143
149
|
{{/each}}
|