override or add stylesheet to mounted engine pages

I mounted an engine and it has it’s own assets pipeline How do I override or add to it? It’s in a subdirectory under the gem root path /app/assets/stylesheets/blogit There’s no application.css file in the folder, only other css files I created an application.html.erb file for the blog portion of the site so the file i need to add to the assets pipleline is application.css

I mounted an engine and it has it's own assets pipeline How do I override or add to it? It's in a subdirectory under the gem root path /app/assets/stylesheets/blogit There's no application.css file in the folder, only other css files I created an application.html.erb file for the blog portion of the site so the file i need to add to the assets pipleline is application.css

CSS is loaded by order. A more recently loaded stylesheet will override a stylesheet loaded earlier.

= stylesheet_link_tag 'application' = stylesheet_link_tag 'custom'

so in the code above, anything inside custom.css will take precedence over those in application