@inntechcorp/it-design 2.2.37 → 2.2.39
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/global.css +22 -0
- package/dist/index.cjs.js +39 -47
- package/dist/index.esm.js +2 -10
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -5,6 +5,18 @@ body {
|
|
|
5
5
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
+
/* iOS Safari için layout shift önleme */
|
|
9
|
+
@supports (-webkit-touch-callout: none) {
|
|
10
|
+
body {
|
|
11
|
+
/* iOS'ta viewport değişimlerini stabilize et */
|
|
12
|
+
-webkit-text-size-adjust: 100%;
|
|
13
|
+
-webkit-overflow-scrolling: touch;
|
|
14
|
+
/* Layout shift'i minimize et */
|
|
15
|
+
transform: translateZ(0);
|
|
16
|
+
-webkit-transform: translateZ(0);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
8
20
|
*, ::after, ::before {
|
|
9
21
|
box-sizing : border-box;
|
|
10
22
|
-webkit-tap-highlight-color : transparent;
|
|
@@ -123,6 +135,16 @@ textarea {
|
|
|
123
135
|
transition: opacity 250ms, transform 250ms !important;
|
|
124
136
|
}
|
|
125
137
|
|
|
138
|
+
/* iOS Safari için transform'u devre dışı bırak */
|
|
139
|
+
@supports (-webkit-touch-callout: none) {
|
|
140
|
+
.select-menu-enter,
|
|
141
|
+
.select-menu-enter-active,
|
|
142
|
+
.select-menu-exit-active {
|
|
143
|
+
transform: none !important;
|
|
144
|
+
transition: opacity 250ms !important;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
126
148
|
/* DatePicker Modal Transitions */
|
|
127
149
|
.datepicker-modal-enter {
|
|
128
150
|
opacity: 0 !important;
|