-
-
Notifications
You must be signed in to change notification settings - Fork 161
Open
Description
Hello,
Is it possible - and if so how - to change @lost variables using media queries?
For example I have my gutter set to 30px:
@lost gutter 30px;
This works. However, I want to have my gutter set to 6vw on mobile and the follow does not work:
@lost gutter 30px;
@media screen and (max-width: 480px) {
@lost gutter 7vw;
}Please can you advise how to get this working?
Thank you.