I'm creating an angular site, it and it has a lightbox. When the lightbox opens, and the browser's width is over 978px, it should give the lightbox a width of 600px. Works fine in Chrome and FF, but in IE, it instead grabs the media query and makes the width 100%. HOWEVER when I resize the browser, it grabs to correct styles.
@media (max-width: 395px) {
#sgf_form {
width: 100%;
}
}
Is this a known bug and what's the workaround?