Create a module
Add the following to the file:
.message-container {
margin: 1em auto;
padding-bottom: 100px;
@media #{$tablet} {
width: 75%;
@media #{$desktop} {
}
}
/////// Modules
@import "modules/message-container/manifest";
So in the application.scss
we do the following:
/////// Sub-Modules
This helps keep things easier to manage as the we never need to update the application.scss
file and at the root of the modules directory, where we are working, we just need to add a new listing there. Everything is imported and everything just works.