I would just rename it to application.scss , and then you can import into your other .scss files:
// Inside application.scss // HTML Reset @import "reset.scss"; // Users CSS @import "users.scss";
When compiling SCSS, it will generate application.css for you from all other imported files or CSS in this file.
source share