@julseb-lib/react 0.1.8 → 0.1.10
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/index.css +11 -2
- package/dist/lib/index.css +11 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -73,7 +73,9 @@
|
|
|
73
73
|
--color-background: var(--color-white);
|
|
74
74
|
--color-font: var(--color-black);
|
|
75
75
|
|
|
76
|
-
--font-lato:
|
|
76
|
+
--font-lato:
|
|
77
|
+
"Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
78
|
+
sans-serif;
|
|
77
79
|
--font-family-body: var(--font-lato);
|
|
78
80
|
--font-family-code: monospace;
|
|
79
81
|
|
|
@@ -148,11 +150,18 @@
|
|
|
148
150
|
--font-size-small: 0.875rem;
|
|
149
151
|
}
|
|
150
152
|
|
|
153
|
+
@layer base {
|
|
154
|
+
html,
|
|
155
|
+
body {
|
|
156
|
+
font-family: var(--font-family-body);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
151
160
|
/*====================== Common styles ======================*/
|
|
152
161
|
|
|
153
162
|
html,
|
|
154
163
|
body {
|
|
155
|
-
font-family: var(--font-family-body);
|
|
164
|
+
font-family: var(--font-family-body) !important;
|
|
156
165
|
width: 100%;
|
|
157
166
|
min-height: 100vh;
|
|
158
167
|
background-color: var(--color-background);
|
package/dist/lib/index.css
CHANGED
|
@@ -73,7 +73,9 @@
|
|
|
73
73
|
--color-background: var(--color-white);
|
|
74
74
|
--color-font: var(--color-black);
|
|
75
75
|
|
|
76
|
-
--font-lato:
|
|
76
|
+
--font-lato:
|
|
77
|
+
"Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
78
|
+
sans-serif;
|
|
77
79
|
--font-family-body: var(--font-lato);
|
|
78
80
|
--font-family-code: monospace;
|
|
79
81
|
|
|
@@ -148,11 +150,18 @@
|
|
|
148
150
|
--font-size-small: 0.875rem;
|
|
149
151
|
}
|
|
150
152
|
|
|
153
|
+
@layer base {
|
|
154
|
+
html,
|
|
155
|
+
body {
|
|
156
|
+
font-family: var(--font-family-body);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
151
160
|
/*====================== Common styles ======================*/
|
|
152
161
|
|
|
153
162
|
html,
|
|
154
163
|
body {
|
|
155
|
-
font-family: var(--font-family-body);
|
|
164
|
+
font-family: var(--font-family-body) !important;
|
|
156
165
|
width: 100%;
|
|
157
166
|
min-height: 100vh;
|
|
158
167
|
background-color: var(--color-background);
|