@julseb-lib/react 0.1.9 → 0.1.11
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 +13 -1
- package/dist/lib/index.css +13 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
@import "tailwindcss";
|
|
3
3
|
/* @custom-variant dark (&:where(.dark, .dark *)); */
|
|
4
4
|
|
|
5
|
+
:root {
|
|
6
|
+
--font-lato: "Lato", sans-serif;
|
|
7
|
+
--font-family-body: var(--font-lato);
|
|
8
|
+
}
|
|
9
|
+
|
|
5
10
|
@theme {
|
|
6
11
|
--color-primary-50: var(--color-blue-50);
|
|
7
12
|
--color-primary-100: var(--color-blue-100);
|
|
@@ -148,11 +153,18 @@
|
|
|
148
153
|
--font-size-small: 0.875rem;
|
|
149
154
|
}
|
|
150
155
|
|
|
156
|
+
@layer base {
|
|
157
|
+
html,
|
|
158
|
+
body {
|
|
159
|
+
font-family: var(--font-family-body);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
151
163
|
/*====================== Common styles ======================*/
|
|
152
164
|
|
|
153
165
|
html,
|
|
154
166
|
body {
|
|
155
|
-
font-family: var(--font-family-body);
|
|
167
|
+
font-family: var(--font-family-body) !important;
|
|
156
168
|
width: 100%;
|
|
157
169
|
min-height: 100vh;
|
|
158
170
|
background-color: var(--color-background);
|
package/dist/lib/index.css
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
@import "tailwindcss";
|
|
3
3
|
/* @custom-variant dark (&:where(.dark, .dark *)); */
|
|
4
4
|
|
|
5
|
+
:root {
|
|
6
|
+
--font-lato: "Lato", sans-serif;
|
|
7
|
+
--font-family-body: var(--font-lato);
|
|
8
|
+
}
|
|
9
|
+
|
|
5
10
|
@theme {
|
|
6
11
|
--color-primary-50: var(--color-blue-50);
|
|
7
12
|
--color-primary-100: var(--color-blue-100);
|
|
@@ -148,11 +153,18 @@
|
|
|
148
153
|
--font-size-small: 0.875rem;
|
|
149
154
|
}
|
|
150
155
|
|
|
156
|
+
@layer base {
|
|
157
|
+
html,
|
|
158
|
+
body {
|
|
159
|
+
font-family: var(--font-family-body);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
151
163
|
/*====================== Common styles ======================*/
|
|
152
164
|
|
|
153
165
|
html,
|
|
154
166
|
body {
|
|
155
|
-
font-family: var(--font-family-body);
|
|
167
|
+
font-family: var(--font-family-body) !important;
|
|
156
168
|
width: 100%;
|
|
157
169
|
min-height: 100vh;
|
|
158
170
|
background-color: var(--color-background);
|