Attempting to use an @media query to adjust the height of an element on my website for mobile users. However, I am struggling to make the code work properly. Any assistance in understanding what mistake I'm making and guiding me in the correct direction would be highly appreciated.
body .gilidPanel-opener {
top: 55%;
}
@media all and (max-width: 700px){
body .gilidPanel-opener {
top: 85%;
}
}