@snabcentr/client-ui 0.0.26 → 0.0.27
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/files/file-tree-item/file-tree-item.component.mjs +2 -2
- package/fesm2015/snabcentr-client-ui.mjs +2 -2
- package/fesm2015/snabcentr-client-ui.mjs.map +1 -1
- package/fesm2020/snabcentr-client-ui.mjs +2 -2
- package/fesm2020/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/release_notes.tmp +4 -2
- package/styles/tailwind/tailwind.scss +7 -3
package/package.json
CHANGED
package/release_notes.tmp
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
## 0.0.
|
1
|
+
## 0.0.27 (2023-12-21)
|
2
2
|
|
3
|
-
|
3
|
+
### fixed (1 change)
|
4
|
+
|
5
|
+
- [#7823: Исправлена вёрстка компонента "Файлы и документы".](web_soft/libs/angular/snabcentr-client-ui-lib@f44fdc6a6749436bb21254d7fde228c1f6cf1a42) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!28))
|
4
6
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
! tailwindcss v3.
|
2
|
+
! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com
|
3
3
|
*/
|
4
4
|
|
5
5
|
/*
|
@@ -32,9 +32,11 @@
|
|
32
32
|
4. Use the user's configured `sans` font-family by default.
|
33
33
|
5. Use the user's configured `sans` font-feature-settings by default.
|
34
34
|
6. Use the user's configured `sans` font-variation-settings by default.
|
35
|
+
7. Disable tap highlights on iOS
|
35
36
|
*/
|
36
37
|
|
37
|
-
html
|
38
|
+
html,
|
39
|
+
:host {
|
38
40
|
line-height: 1.5;
|
39
41
|
/* 1 */
|
40
42
|
-webkit-text-size-adjust: 100%;
|
@@ -44,12 +46,14 @@ html {
|
|
44
46
|
-o-tab-size: 4;
|
45
47
|
tab-size: 4;
|
46
48
|
/* 3 */
|
47
|
-
font-family: ui-sans-serif, system-ui,
|
49
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
48
50
|
/* 4 */
|
49
51
|
font-feature-settings: normal;
|
50
52
|
/* 5 */
|
51
53
|
font-variation-settings: normal;
|
52
54
|
/* 6 */
|
55
|
+
-webkit-tap-highlight-color: transparent;
|
56
|
+
/* 7 */
|
53
57
|
}
|
54
58
|
|
55
59
|
/*
|