@forsakringskassan/docs-generator 1.25.2 → 1.25.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/dist/style/core.css +5 -2
- package/dist/style/index.css +14 -5
- package/dist/style/site.css +9 -3
- package/package.json +1 -1
package/dist/style/core.css
CHANGED
|
@@ -5,10 +5,13 @@ h3,
|
|
|
5
5
|
h4,
|
|
6
6
|
h5,
|
|
7
7
|
h6 {
|
|
8
|
-
font-
|
|
9
|
-
|
|
8
|
+
font-family: var(--docs-heading-font-family);
|
|
9
|
+
font-weight: var(--docs-heading-font-weight);
|
|
10
|
+
line-height: var(--docs-heading-line-height);
|
|
10
11
|
margin-top: 0;
|
|
11
12
|
margin-bottom: 0.25rem;
|
|
13
|
+
text-wrap: balance;
|
|
14
|
+
text-wrap: pretty;
|
|
12
15
|
}
|
|
13
16
|
|
|
14
17
|
h1 {
|
package/dist/style/index.css
CHANGED
|
@@ -5,10 +5,13 @@ h3,
|
|
|
5
5
|
h4,
|
|
6
6
|
h5,
|
|
7
7
|
h6 {
|
|
8
|
-
font-
|
|
9
|
-
|
|
8
|
+
font-family: var(--docs-heading-font-family);
|
|
9
|
+
font-weight: var(--docs-heading-font-weight);
|
|
10
|
+
line-height: var(--docs-heading-line-height);
|
|
10
11
|
margin-top: 0;
|
|
11
12
|
margin-bottom: 0.25rem;
|
|
13
|
+
text-wrap: balance;
|
|
14
|
+
text-wrap: pretty;
|
|
12
15
|
}
|
|
13
16
|
|
|
14
17
|
h1 {
|
|
@@ -836,6 +839,15 @@ kbd {
|
|
|
836
839
|
background-color: #f4f4f4;
|
|
837
840
|
}
|
|
838
841
|
|
|
842
|
+
:root {
|
|
843
|
+
--docs-font-family: arial, "Helvetica Neue", sans-serif;
|
|
844
|
+
--docs-font-weight: normal;
|
|
845
|
+
--docs-heading-font-family: arial, "Helvetica Neue", sans-serif;
|
|
846
|
+
--docs-heading-font-weight: normal;
|
|
847
|
+
--docs-heading-line-height: 1.4;
|
|
848
|
+
--docs-menu-width-expanded: 230px;
|
|
849
|
+
}
|
|
850
|
+
|
|
839
851
|
*,
|
|
840
852
|
*::before,
|
|
841
853
|
*::after {
|
|
@@ -897,9 +909,6 @@ textarea {
|
|
|
897
909
|
}
|
|
898
910
|
|
|
899
911
|
html {
|
|
900
|
-
--docs-font-family: arial, "Helvetica Neue", sans-serif;
|
|
901
|
-
--docs-font-weight: normal;
|
|
902
|
-
--docs-menu-width-expanded: 230px;
|
|
903
912
|
scroll-behavior: smooth;
|
|
904
913
|
}
|
|
905
914
|
|
package/dist/style/site.css
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--docs-font-family: arial, "Helvetica Neue", sans-serif;
|
|
3
|
+
--docs-font-weight: normal;
|
|
4
|
+
--docs-heading-font-family: arial, "Helvetica Neue", sans-serif;
|
|
5
|
+
--docs-heading-font-weight: normal;
|
|
6
|
+
--docs-heading-line-height: 1.4;
|
|
7
|
+
--docs-menu-width-expanded: 230px;
|
|
8
|
+
}
|
|
9
|
+
|
|
1
10
|
*,
|
|
2
11
|
*::before,
|
|
3
12
|
*::after {
|
|
@@ -59,9 +68,6 @@ textarea {
|
|
|
59
68
|
}
|
|
60
69
|
|
|
61
70
|
html {
|
|
62
|
-
--docs-font-family: arial, "Helvetica Neue", sans-serif;
|
|
63
|
-
--docs-font-weight: normal;
|
|
64
|
-
--docs-menu-width-expanded: 230px;
|
|
65
71
|
scroll-behavior: smooth;
|
|
66
72
|
}
|
|
67
73
|
|