Ah yes, the iPad Pro.
I actually wrote on this in my guide a bit earlier.
To be more specific you need to target both width and height AND pixel density of iPad Pro with media queries in your custom code area like so:
@media only screen
and (min-device-width: 1024px)
and (max-device-width: 1024px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 2) {
some properties
}
@media only screen
and (min-device-width: 1366px)
and (max-device-width: 1366px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 2) {
some properties
}
Try this and let me know!