@uniai-fe/uds-foundation 0.0.8 → 0.0.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 +6 -3
- package/package.json +1 -1
- package/src/init/document.scss +2 -1
- package/src/init/reset.scss +4 -2
package/dist/index.css
CHANGED
|
@@ -27,14 +27,16 @@
|
|
|
27
27
|
*:focus-visible {
|
|
28
28
|
outline: none;
|
|
29
29
|
}
|
|
30
|
-
html
|
|
30
|
+
html,
|
|
31
|
+
.uds-theme-root {
|
|
31
32
|
width: 100%;
|
|
32
33
|
font-size: 10px;
|
|
33
34
|
font-family: var(--font-family-sans);
|
|
34
35
|
background-color: #fff;
|
|
35
36
|
touch-action: manipulation;
|
|
36
37
|
}
|
|
37
|
-
body
|
|
38
|
+
body,
|
|
39
|
+
.uds-theme-root {
|
|
38
40
|
width: 100%;
|
|
39
41
|
position: relative;
|
|
40
42
|
background: none;
|
|
@@ -288,7 +290,8 @@
|
|
|
288
290
|
}
|
|
289
291
|
}
|
|
290
292
|
html,
|
|
291
|
-
body
|
|
293
|
+
body,
|
|
294
|
+
.uds-theme-root {
|
|
292
295
|
width: 100%;
|
|
293
296
|
height: 100%;
|
|
294
297
|
position: fixed;
|
package/package.json
CHANGED
package/src/init/document.scss
CHANGED
package/src/init/reset.scss
CHANGED
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
outline: none;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
html
|
|
40
|
+
html,
|
|
41
|
+
.uds-theme-root {
|
|
41
42
|
width: 100%;
|
|
42
43
|
font-size: 10px;
|
|
43
44
|
font-family: var(--font-family-sans);
|
|
@@ -45,7 +46,8 @@
|
|
|
45
46
|
touch-action: manipulation;
|
|
46
47
|
}
|
|
47
48
|
|
|
48
|
-
body
|
|
49
|
+
body,
|
|
50
|
+
.uds-theme-root {
|
|
49
51
|
width: 100%;
|
|
50
52
|
position: relative;
|
|
51
53
|
background: none;
|