Is there a way to do this in bricks without custom CSS? I can make padding on a container 1.8vw, but then it keeps growing on screen for widths larger than 1440px. It would need to be something like “padding width” and a “padding max width.”
@media (min-width: 1440px) {
root {
padding-left: 30px;
padding-right: 30px;
}
}
@media (max-width: 1439px) {
root {
padding-left: 1.8vw;
padding-right: 1.8vw;
}
}