@media only screen and (max-device-width: 667px), screen and (max-width: 552px) {
.class1 {
}
.class2 {
}
.class3 {
}
.class4 {
}
.class5 {
}
}
I have the above strucutre in my css file.
What I'm trying to implement is that I have a button. When I click on that button, I need to change the max-width: 552px
to max-width: 1000px
. Is that possible?