Hi Charlie,
when i copy a css code from element to global css so i can do a global class and i wanna change the selector inside global css, the builder dies… it just do not response anymore.
thi si my element css
$el {
height: 70vh;
min-height: 600px;
}
@media (min-width: 1200px) {
$el {
max-height: 900px;
overflow: hidden;
}
}
@media (max-width: 767px) {
$el {
min-height: 0;
max-height: 400px;
overflow: hidden;
}
}
i copied that over to globalcss and tried to change the selector there.
thanks