I have written media queries for different device sizes in my own css.
CSS:
@media only screen and (max-width :480px)
{
...
}
@media only screen and (max-width :768px)
{
...
}
the media queries successfully override bootstrap CSS but only (max-width :768px) gets applied whatever screen size may be.
Is there any issues regarding order of media queries?