Ignition Workstation doesn't support media queries

In my stylesheet.css i have some declaration like the following:

.some-class{
	height: 50px !important;
	@media only screen and (min-width: 640px) {
		height: 100px !important;
	}
}

and everything is displayed as expected in browsers and mobile app.

Now i'm trying to use the same application through Perspective Workstation and i noticed that media queries are just ignored (unknown property name).


Am I doing something wrong? Is there any workaround?

Thanks