Is there a way to adjust CSS/SCSS rules in applications like Angular based on the viewport height of various devices?
When dealing with viewport width, we can use @media (max-width: ...) {}
, but how can we address the height aspect?
For instance, how would we handle different heights on devices such as 13-inch Macbooks, 15-inch Macbooks, and so on?