I'm having 3 media query breakpoints in my application
- (min-width: 1024px) // For Desktops
- (max-width: 1023px) and (orientation:portrait) //For Mobile Portrait
- (max-width: 1023px) and (orientation:landscape) //For Mobile Landscape
Based on the breakpoints I'm going to change the source of the image corresponding to the device and orientation
The image is having a width and height of 346x251 for desktop device .
Now I need to slice the image for mobile portrait and landscape. What size would be ideal for mobile portrait and mobile landscape