my app/assets/stylesheets/shouter.scss - has no effect on the style
in part 1 movie
It should be shouter.css.scss.
I tried your suggestion and it still didn’t change the style. Do you have any other suggestions?
I have this in my shouter/app/assets/stylesheets/shouter.css.scss
shout {
padding: 10px;
border-top: 1px solid #EEE;
}
If this is copied directly from the source, you need to have a either class or id declaration in front of the shout.
so it would be:
.shout {
padding: 10px;
border-top: 1px solid #EEE;
}
If you already have that, then we will probably need a bit more info.