dibk-design 3.11.3 → 3.12.0
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/dist/components/PDF.scss +30 -3
- package/dist/style/pdf.css +30 -5
- package/dist/style/pdf.css.map +1 -1
- package/package.json +1 -1
package/dist/components/PDF.scss
CHANGED
|
@@ -7,6 +7,7 @@ $font-size-h2: 24px;
|
|
|
7
7
|
$font-size-h2-small: 16px;
|
|
8
8
|
$font-size-h3: 19px;
|
|
9
9
|
$font-size-h4: 17px;
|
|
10
|
+
$font-size-h5: 16px;
|
|
10
11
|
$font-size-table-header: 15px;
|
|
11
12
|
$font-size-table-data: 16px;
|
|
12
13
|
$font-size-checkbox: 20px;
|
|
@@ -25,6 +26,8 @@ $margin-top-h3: 15px;
|
|
|
25
26
|
$margin-bottom-h3: 4px;
|
|
26
27
|
$margin-top-h4: 15px;
|
|
27
28
|
$margin-bottom-h4: 6px;
|
|
29
|
+
$margin-top-h5: 12px;
|
|
30
|
+
$margin-bottom-h5: 2px;
|
|
28
31
|
$margin-top-paragraph: 3px;
|
|
29
32
|
$margin-bottom-paragraph: 12px;
|
|
30
33
|
$margin-top-list: 3px;
|
|
@@ -183,6 +186,15 @@ body {
|
|
|
183
186
|
}
|
|
184
187
|
}
|
|
185
188
|
|
|
189
|
+
h5,
|
|
190
|
+
.h5 {
|
|
191
|
+
page-break-after: avoid;
|
|
192
|
+
font-size: $font-size-h5;
|
|
193
|
+
font-weight: bold;
|
|
194
|
+
margin-top: $margin-top-h5;
|
|
195
|
+
margin-bottom: $margin-bottom-h5;
|
|
196
|
+
}
|
|
197
|
+
|
|
186
198
|
p {
|
|
187
199
|
margin-top: $margin-top-paragraph;
|
|
188
200
|
margin-bottom: $margin-bottom-paragraph;
|
|
@@ -399,14 +411,16 @@ body {
|
|
|
399
411
|
float: right;
|
|
400
412
|
margin-left: calc($heading-logo-margin-left * $scaling-for-signed-documents);
|
|
401
413
|
}
|
|
402
|
-
h1
|
|
414
|
+
h1,
|
|
415
|
+
.h1 {
|
|
403
416
|
font-size: calc($font-size-h1 * $scaling-for-signed-documents);
|
|
404
417
|
margin-top: calc($margin-top-h1 * $scaling-for-signed-documents);
|
|
405
418
|
small {
|
|
406
419
|
font-size: calc($font-size-h1-small * $scaling-for-signed-documents);
|
|
407
420
|
}
|
|
408
421
|
}
|
|
409
|
-
h2
|
|
422
|
+
h2,
|
|
423
|
+
.h2 {
|
|
410
424
|
font-size: calc($font-size-h2 * $scaling-for-signed-documents);
|
|
411
425
|
margin-top: calc($margin-top-h2 * $scaling-for-signed-documents);
|
|
412
426
|
margin-bottom: calc($margin-bottom-h2 * $scaling-for-signed-documents);
|
|
@@ -415,11 +429,24 @@ body {
|
|
|
415
429
|
margin-bottom: calc($margin-bottom-h2-small * $scaling-for-signed-documents);
|
|
416
430
|
}
|
|
417
431
|
}
|
|
418
|
-
h3
|
|
432
|
+
h3,
|
|
433
|
+
.h3 {
|
|
419
434
|
font-size: calc($font-size-h3 * $scaling-for-signed-documents);
|
|
420
435
|
margin-top: calc($margin-top-h3 * $scaling-for-signed-documents);
|
|
421
436
|
margin-bottom: calc($margin-bottom-h3 * $scaling-for-signed-documents);
|
|
422
437
|
}
|
|
438
|
+
h4,
|
|
439
|
+
.h4 {
|
|
440
|
+
font-size: calc($font-size-h4 * $scaling-for-signed-documents);
|
|
441
|
+
margin-top: calc($margin-top-h4 * $scaling-for-signed-documents);
|
|
442
|
+
margin-bottom: calc($margin-bottom-h4 * $scaling-for-signed-documents);
|
|
443
|
+
}
|
|
444
|
+
h5,
|
|
445
|
+
.h5 {
|
|
446
|
+
font-size: calc($font-size-h5 * $scaling-for-signed-documents);
|
|
447
|
+
margin-top: calc($margin-top-h5 * $scaling-for-signed-documents);
|
|
448
|
+
margin-bottom: calc($margin-bottom-h5 * $scaling-for-signed-documents);
|
|
449
|
+
}
|
|
423
450
|
p {
|
|
424
451
|
margin-top: calc($margin-top-paragraph * $scaling-for-signed-documents);
|
|
425
452
|
margin-bottom: calc($margin-bottom-paragraph * $scaling-for-signed-documents);
|
package/dist/style/pdf.css
CHANGED
|
@@ -131,6 +131,14 @@ body {
|
|
|
131
131
|
.page .h4 + p {
|
|
132
132
|
margin-top: 0;
|
|
133
133
|
}
|
|
134
|
+
.page h5,
|
|
135
|
+
.page .h5 {
|
|
136
|
+
page-break-after: avoid;
|
|
137
|
+
font-size: 16px;
|
|
138
|
+
font-weight: bold;
|
|
139
|
+
margin-top: 12px;
|
|
140
|
+
margin-bottom: 2px;
|
|
141
|
+
}
|
|
134
142
|
.page p {
|
|
135
143
|
margin-top: 3px;
|
|
136
144
|
margin-bottom: 12px;
|
|
@@ -309,27 +317,44 @@ body {
|
|
|
309
317
|
float: right;
|
|
310
318
|
margin-left: 16.6203px;
|
|
311
319
|
}
|
|
312
|
-
.page.signed-document div.content-container h1
|
|
320
|
+
.page.signed-document div.content-container h1,
|
|
321
|
+
.page.signed-document div.content-container .h1 {
|
|
313
322
|
font-size: 37.67268px;
|
|
314
323
|
margin-top: 5.5401px;
|
|
315
324
|
}
|
|
316
|
-
.page.signed-document div.content-container h1 small
|
|
325
|
+
.page.signed-document div.content-container h1 small,
|
|
326
|
+
.page.signed-document div.content-container .h1 small {
|
|
317
327
|
font-size: 19.94436px;
|
|
318
328
|
}
|
|
319
|
-
.page.signed-document div.content-container h2
|
|
329
|
+
.page.signed-document div.content-container h2,
|
|
330
|
+
.page.signed-document div.content-container .h2 {
|
|
320
331
|
font-size: 26.59248px;
|
|
321
332
|
margin-top: 24.37644px;
|
|
322
333
|
margin-bottom: 2.21604px;
|
|
323
334
|
}
|
|
324
|
-
.page.signed-document div.content-container h2 small
|
|
335
|
+
.page.signed-document div.content-container h2 small,
|
|
336
|
+
.page.signed-document div.content-container .h2 small {
|
|
325
337
|
font-size: 17.72832px;
|
|
326
338
|
margin-bottom: 6.64812px;
|
|
327
339
|
}
|
|
328
|
-
.page.signed-document div.content-container h3
|
|
340
|
+
.page.signed-document div.content-container h3,
|
|
341
|
+
.page.signed-document div.content-container .h3 {
|
|
329
342
|
font-size: 21.05238px;
|
|
330
343
|
margin-top: 16.6203px;
|
|
331
344
|
margin-bottom: 4.43208px;
|
|
332
345
|
}
|
|
346
|
+
.page.signed-document div.content-container h4,
|
|
347
|
+
.page.signed-document div.content-container .h4 {
|
|
348
|
+
font-size: 18.83634px;
|
|
349
|
+
margin-top: 16.6203px;
|
|
350
|
+
margin-bottom: 6.64812px;
|
|
351
|
+
}
|
|
352
|
+
.page.signed-document div.content-container h5,
|
|
353
|
+
.page.signed-document div.content-container .h5 {
|
|
354
|
+
font-size: 17.72832px;
|
|
355
|
+
margin-top: 13.29624px;
|
|
356
|
+
margin-bottom: 2.21604px;
|
|
357
|
+
}
|
|
333
358
|
.page.signed-document div.content-container p {
|
|
334
359
|
margin-top: 3.32406px;
|
|
335
360
|
margin-bottom: 13.29624px;
|
package/dist/style/pdf.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/stories/PDF.scss","../../src/style/abstracts/mixins/_box-sizing.scss","../../src/style/abstracts/variables/_colors.scss"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/stories/PDF.scss","../../src/style/abstracts/mixins/_box-sizing.scss","../../src/style/abstracts/variables/_colors.scss"],"names":[],"mappings":"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","file":"pdf.css"}
|