mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(item): multiple input appearance when using datetime (#25484)
Resolves #25479 Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>
This commit is contained in:
@@ -337,15 +337,20 @@
|
||||
:host .calendar-day:after {
|
||||
@include border-radius(32px, 32px, 32px, 32px);
|
||||
@include padding(4px, 4px, 4px, 4px);
|
||||
|
||||
position: absolute;
|
||||
|
||||
/**
|
||||
* Explicit position values are required here
|
||||
* as pseudo element positioning is incorrect
|
||||
* in older implementations of css grid.
|
||||
*
|
||||
* TODO: FW-1720: Remove top/left styles when deprecating iOS 13 support
|
||||
*/
|
||||
|
||||
@include position(50%, null, null, 50%);
|
||||
|
||||
position: absolute;
|
||||
/* stylelint-disable-next-line property-disallowed-list */
|
||||
top: 50%;
|
||||
/* stylelint-disable-next-line property-disallowed-list */
|
||||
left: 50%;
|
||||
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
|
||||
Reference in New Issue
Block a user