Skip to content

Commit f8df5c9

Browse files
committed
Job Board: create files with .scss instead of .css.scss
The .css. part of the filename hasn't been needed in the latest revisions of scss.
1 parent a8a1b19 commit f8df5c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sites/en/job-board/add_a_navbar.step

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ message <<-MARKDOWN
5151

5252
# Add the styles
5353

54-
Open up the assets directory, and you should have a file here: app/assets/stylesheets/jobs.css.scss. This is a Rails-default created stylesheet, and isn't the best. [Smart CSS people](http://www.stubbornella.org/content/2013/09/12/rails-is-mucking-up-my-css-already/) have taught us that CSS should be organized into [reusable components](https://github.com/stubbornella/oocss/wiki), not organized based on where it is used.
54+
Open up the assets directory, and you should have a file here: app/assets/stylesheets/jobs.scss. This is a Rails-default created stylesheet, and isn't the best. [Smart CSS people](http://www.stubbornella.org/content/2013/09/12/rails-is-mucking-up-my-css-already/) have taught us that CSS should be organized into [reusable components](https://github.com/stubbornella/oocss/wiki), not organized based on where it is used.
5555

5656
So let's delete that file and make a new one.
5757

58-
Actually, we're going to make two new ones. Under `app/assets/stylesheets`, add `global.css.scss`:
58+
Actually, we're going to make two new ones. Under `app/assets/stylesheets`, add `global.scss`:
5959
MARKDOWN
6060

6161
source_code :CSS,
@@ -77,7 +77,7 @@ CSS
7777
message <<-MARKDOWN
7878
This is where we put styles that affect the whole app.
7979

80-
Now, under `app/assets/stylesheets`, add `nav.css.scss`:
80+
Now, under `app/assets/stylesheets`, add `nav.scss`:
8181
MARKDOWN
8282

8383
source_code :CSS,

0 commit comments

Comments
 (0)