heavy-matill
Results
2
comments of
heavy-matill
Improving the previous solution by making `top` the half of modals `height` works for any percentage: ``` ion-modal.auto-height::part(content) { position: relative; --varPer: 50%; bottom: 0px; height: var(--varPer); top: calc(var(--varPer) /...
I found a CSS solution: Add a dummy element in header (or Footer) element with `class=hideable-header`. Add CSS: `.hideable-header:not(:only-child){ display: none; } .hideable-header:only-child{ display: block; }` This will result in...