Skip to content

Commit

Permalink
fix(item): multiple input appearance when using datetime
Browse files Browse the repository at this point in the history
Resolves #25483
  • Loading branch information
sean-perkins committed Jun 17, 2022
1 parent d9590e2 commit e97012c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions core/src/components/datetime/datetime.scss
Expand Up @@ -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;
Expand Down

0 comments on commit e97012c

Please sign in to comment.