I have been working on the Firefox ‘Responsive Design Mode’ and my portfolio website is now fully responsive for the most part. But I am now checking specific devices and everything stays the same except the text and image in the welcome-section. For something like the ‘iPhone 11 Pro iOS 14.6’, should I create a media query for that specfic width and height then just move things slightly up? In that case I would be working in:
/* iPhone 11 Pro iOS 14.6 */
@media (max-width: 414) and (max-height: 896) {
}
Should I make these slight adjustments for every device or only the necessary ones?