Skip to content

Commit 3089f38

Browse files
fix(item): multiple input appearance when using datetime (#25484)
Resolves #25479 Co-authored-by: Liam DeBeasi <[email protected]>
1 parent b6e9c01 commit 3089f38

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

core/src/components/datetime/datetime.scss

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -337,15 +337,20 @@
337337
:host .calendar-day:after {
338338
@include border-radius(32px, 32px, 32px, 32px);
339339
@include padding(4px, 4px, 4px, 4px);
340+
341+
position: absolute;
342+
340343
/**
341344
* Explicit position values are required here
342345
* as pseudo element positioning is incorrect
343346
* in older implementations of css grid.
347+
*
348+
* TODO: FW-1720: Remove top/left styles when deprecating iOS 13 support
344349
*/
345-
346-
@include position(50%, null, null, 50%);
347-
348-
position: absolute;
350+
/* stylelint-disable-next-line property-disallowed-list */
351+
top: 50%;
352+
/* stylelint-disable-next-line property-disallowed-list */
353+
left: 50%;
349354

350355
width: 32px;
351356
height: 32px;

0 commit comments

Comments
 (0)