File tree 2 files changed +21
-4
lines changed
@tailwindcss-postcss/src/__snapshots__
2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -509,9 +509,15 @@ exports[`\`@import 'tailwindcss'\` is replaced with the generated CSS 1`] = `
509
509
-webkit-appearance: none ;
510
510
}
511
511
512
+ input :where ([type = " time" ], [type = " date" ]) {
513
+ display: inline - block ;
514
+ }
515
+
512
516
::- webkit - date - and - time - value {
517
+ vertical-align: middle ;
513
518
text - align : inherit ;
514
519
min - height : 1lh ;
520
+ display : inline - block ;
515
521
}
516
522
517
523
::- webkit - datetime - edit {
Original file line number Diff line number Diff line change @@ -245,13 +245,24 @@ progress {
245
245
}
246
246
247
247
/*
248
- 1. Ensure date/time inputs have the same height when empty in iOS Safari.
249
- 2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
248
+ Ensure the empty date/time inputs are correctly aligned in iOS Safari.
249
+ */
250
+
251
+ input : where ([type = "time" ], [type = "date" ]) {
252
+ display : inline-block;
253
+ }
254
+
255
+ /*
256
+ 1. Ensure the empty date/time inputs are correctly aligned in iOS Safari.
257
+ 2. Ensure date/time inputs have the same height when empty in iOS Safari.
258
+ 3. Ensure text alignment can be changed on date/time inputs in iOS Safari.
250
259
*/
251
260
252
261
::-webkit-date-and-time-value {
253
- min-height : 1lh ; /* 1 */
254
- text-align : inherit; /* 2 */
262
+ vertical-align : middle; /* 1 */
263
+ min-height : 1lh ; /* 2 */
264
+ text-align : inherit; /* 3 */
265
+ display : inline-block; /* 1 */
255
266
}
256
267
257
268
/*
You can’t perform that action at this time.
0 commit comments