In pure css, how to make breakpoints?

Hi,

I add breakpoints.
And then when I want to use breakpoints next time,
all breakpoints disappear.

How can I use breakpoints repeatedly ?

Thanks.

Hi @alexseo,
There isn’t currently a way to save breakpoints between projects within Pinegrow. The only thing that you could do is create a “boilerplate” CSS sheet containing a media query for each breakpoint - like this:

@media (min-width:480px) {
}

@media (min-width:748px) {
}

@media (min-width:1024px) {

}

@media (min-width:1200px) {

}

Then you could copy it to your new project, attach it to your page by dragging it in, and then click on the “Get from stylesheets”. After Pinegrow creates the breakpoints you can just delete the stylesheet.
Hope this helps,
Bob

1 Like

I see.
Thank you very much.