I am looking for a specific media query that will only be activated in Firefox and only when the window size is less than 1352px. I have experimented with different variations like
@@-moz-document url-prefix() and media only screen and (max-width: 1352px) {
#timetable {
transform: scale(0.85) !important
}
or
@@media only screen and (max-width: 1352px) and (moz-document: url-prefix()) {
#timetable {
transform: scale(0.85) !important
}
but unfortunately, none of them seem to be effective.