I am currently using this
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
but on a specific screen size I don't want box-shadow.
How can I override to disable the shadow?
Use CSS3 :: Media Queries to create a screen resolution style. And use
box-shadow: none;
To turn off the shadow.