fix(datetime): reduce time presentation min height (#23771)

resolves #23690
This commit is contained in:
William Martin
2021-08-16 15:58:21 -04:00
committed by GitHub
parent 578b9062dd
commit bc4e8267aa
2 changed files with 6 additions and 2 deletions

View File

@@ -6,7 +6,9 @@
--background: var(--ion-color-light, #ffffff);
--background-rgb: var(--ion-color-light-rgb);
--title-color: #{$text-color-step-400};
}
:host(:not(.datetime-presentation-time)) {
min-height: 300px;
}

View File

@@ -14,13 +14,15 @@
flex-flow: column;
height: 100%;
background: var(--background);
overflow: hidden;
}
:host(:not(.datetime-presentation-time)) {
height: 100%;
}
:host(.datetime-size-fixed) {
width: 350px;
}