One issue I'm facing is when attempting to optimize a section of my template for mobile devices in landscape mode.
TS:
window = window;
Template:
<div [ngStyle]="{'height': window.innerHeight < window.innerWidth ?
window.screen.height : (widget == 'playlist' ? '334px' : '275px')}">
</div>
Despite logging good values for window.screen.height, I'm not getting any output from it. I tried using it as a value, but the result remained the same.