@enure/jacklin 1.3.2 → 1.3.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enure/jacklin",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -10,6 +10,7 @@
10
10
  line-height: 1.3;
11
11
  color: #222;
12
12
  padding: 64px;
13
+ text-wrap: pretty;
13
14
  }
14
15
  main {
15
16
  margin-top: 48px;
@@ -40,10 +41,10 @@
40
41
  }
41
42
  .WorkList-item {
42
43
  margin-top: 16px;
43
- page-break-inside: avoid;
44
+ /* page-break-inside: avoid; */
44
45
  }
45
46
  .WorkList-dates {
46
- color: #666;
47
+ color: #777;
47
48
  font-size: 14px;
48
49
  }
49
50
  .WorkList-positionAt {
@@ -63,6 +64,9 @@
63
64
  .SummaryList-itemName {
64
65
  font-weight: 500;
65
66
  }
67
+ .SummaryList-itemPosition {
68
+ color: #999;
69
+ }
66
70
  .WorkList-highlights {
67
71
  margin-top: 12px;
68
72
  display: flex;
@@ -140,7 +144,7 @@
140
144
  {{#each work}}
141
145
  {{#unless this.isFeatured}}
142
146
  <li class="SummaryList-item">
143
- <span class="SummaryList-itemPosition">{{this.position}}</span> at <span class="SummaryList-itemName">{{this.name}}</span>
147
+ <span class="SummaryList-itemName">{{this.name}}</span> <span class="SummaryList-itemPosition">({{this.position}})</span>
144
148
  </li>
145
149
  {{/unless}}
146
150
  {{/each}}