Pinegrow & atom

Hi, I am trying out ATOM with PINEGROW (PG).

Changes made to the HTML on ATOM is reflected on PG so far.

However, whenever I update the CSS on ATOM, it does not always update the CSS rules on PG.

Doing a CTRL+R (refresh) on PG doesn’t always render the changes I have made on my CSS on ATOM.

For instance, when I add the following to my style.css in ATOM followed by a CTRL+S, I don’t see it in the style.css file in PG.

blockquote {
display: block;
font-style: italic;
color: #7C9A14
margin-top: 1em;
margin-bottom: 1em;
margin-left: 40px;
margin-right: 40px;
}

So i have to manually update the style.css on PG.

Not sure if it’s just me. Can someone let me know if this is a bug or its something i am doing wrongly?

@kohjonathan Hi. I’ve just tried it on my set up and it seems to work. There’s a small error in the code above, it’s missing “;” at the end of this line color: #7C9A14 that might be causing some of your problem.

2 Likes

Double checked as well and everything went well except for the typo in your CSS.

Oh, thanks. You are both right. I’ve corrected that. But am i right to say that every code we write onto PG’s CSS should registered in ATOM’s CSS (and vice versa)?

Yes that should be the case.