# CSS, Sass and SCSS Webpacker supports importing CSS, Sass and SCSS files directly into your JavaScript files. Importing and loading styles is a two step process: 1. You need to tell webpack which file(s) it has to compile and know how to load When you do `import '../scss/application.scss'`, you're telling webpack to include `application.scss` in the build. This does not mean it's going to be compiled into your javascript, only that webpack now compiles and knows how to load this file. (How that file compilation is handled is depending on how your loaders (`css-loader`, `sass-loader`, `file-loader`, etc.) are configured.) 2. You need to load those files in your views In order to have styles load in production, you need to include `stylesheet_pack_tag` with the same name as the javascript file that imports the styles. When you do `<%= stylesheet_pack_tag 'application' %>`, that's a run-time inclusion from Rails, where Rails gets the correct "asset path" to that file from webpack. ## Import global styles into your JS app ### Importing CSS as a multi-file pack (Webpacker v5) When you add a CSS/SCSS/SASS file to `app/javascript/packs/` directory, make sure to use the same pack name as its complementary JavaScript pack, e.g. `application.js` and `application.css`. By Webpacker convention (as of Webpacker v5), this will bundle `application.js` and `application.scss` as part of the same entry point (also described as [a multi-file entry point in the webpack docs](https://webpack.js.org/concepts/entry-points/#single-entry-shorthand-syntax)). With this approach, you can avoid importing CSS from JS, if desired. ``` app/ javascript/ packs/ application.js application.scss ``` ### Importing CSS from CSS You can import additional CSS/SCSS/SASS files from within a CSS file: ``` app/ javascript/ stylesheets/ application.scss posts.scss comments.scss ``` ```css /* app/javascript/stylesheets/application.scss */ @import './posts'; @import './comments'; ``` ### Importing CSS provided by an NPM package from SCSS/CSS Given your application installs an NPM package that provides CSS, such as `flatpickr`, you can import the CSS file(s) by path from the package directory within `node_modules/`: ```js /* app/javascript/stylesheets/application.scss */ @import "flatpickr/dist/flatpickr.css" ``` ### Importing CSS from JS ```sass // app/javascript/hello_react/styles/hello-react.sass .hello-react padding: 20px font-size: 12px ``` ```js // React component example // app/javascript/packs/hello_react.jsx import React from 'react' import helloIcon from '../hello_react/images/icon.png' import '../hello_react/styles/hello-react' const Hello = (props) => (
hello-icon

Hello {props.name}!

) ``` ### Importing CSS provided by an NPM package from JS Given your application installs an NPM package that provides CSS, such as `flatpickr`, you can import the CSS file(s) by path from the package directory within `node_modules/`. This is an alternative to importing from within a CSS file, as above: ```js // app/javascript/packs/application.js import 'flatpickr/dist/flatpickr.css' ``` ## Import scoped styles into your JS app Stylesheets that end with `.module.*` are treated as [CSS Modules](https://github.com/css-modules/css-modules). ```sass // app/javascript/hello_react/styles/hello-react.module.sass .helloReact padding: 20px font-size: 12px ``` ```js // React component example // app/javascript/packs/hello_react.jsx import React from 'react' import helloIcon from '../hello_react/images/icon.png' import styles from '../hello_react/styles/hello-react' const Hello = (props) => (
hello-icon

Hello {props.name}!

) ``` **Note:** Declared class is referenced as object property in JavaScript. ## Import scoped styles into your TypeScript app Using CSS modules with a TypeScript application requires a few differences from a JavaScript app. The CSS / Sass files are the same: ```sass // app/javascript/hello_react/styles/hello-react.module.sass .helloReact padding: 20px font-size: 12px ``` There must also be a type definition file for these styles: ```typescript export const helloReact: string ``` You can then import the styles like this: ```typescript // React component example // app/javascripts/packs/hello_react.tsx import React from 'react' import helloIcon from '../hello_react/images/icon.png' import * as styles from '../hello_react/styles/hello-react.module.sass' const Hello = (props) => (
hello-icon

Hello {props.name}!

) ``` You can automatically generate type definitions for the styles by installing the `typed-scss-modules` as a development dependency: ``` yarn add typed-scss-modules --dev ``` Then by adding these lines to your `package.json`: ``` "scripts": { "gen-typings": "yarn run tsm app/javascript/**/*.sass", "watch-typings": "yarn run tsm app/javascript/**/*.sass -w" }, ``` You can generate the typings for the stylesheet by running the command `yarn gen-typings` when you've finished writing CSS, or run `yarn watch-typings` to have it automatically generate them as you go. ## Link styles from your Rails views Under the hood webpack uses [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) plugin to extract all the referenced styles within your app and compile it into a separate `[pack_name].css` bundle so that in your view you can use the `stylesheet_pack_tag` helper. ```erb <%= stylesheet_pack_tag 'hello_react' %> ``` ## Add bootstrap You can use Yarn to add bootstrap or any other modules available on npm: ```bash yarn add bootstrap ``` Import Bootstrap and theme (optional) CSS in your app/javascript/packs/application.js file: ```js import 'bootstrap/dist/css/bootstrap' import 'bootstrap/dist/css/bootstrap-theme' ``` Or in your app/javascript/packs/application.sass file: ```sass // ~ to tell that this is not a relative import @import '~bootstrap/dist/css/bootstrap' @import '~bootstrap/dist/css/bootstrap-theme' ``` ## Post-Processing CSS Webpacker out-of-the-box provides CSS post-processing using [postcss-loader](https://github.com/postcss/postcss-loader) and the installer sets up a standard `postcss.config.js` file in your app root with standard plugins. ```js module.exports = { plugins: [ require('postcss-import'), require('postcss-flexbugs-fixes'), require('postcss-preset-env')({ autoprefixer: { flexbox: 'no-2009' }, stage: 3 }) ] } ``` ## Using CSS with [vue-loader](https://github.com/vuejs/vue-loader) Vue templates require loading the stylesheet in your application in order for CSS to work. This is in addition to loading the JavaScript file for the entry point. Loading the stylesheet will also load the CSS for any nested components. ```erb <%= stylesheet_pack_tag 'hello_vue' %> <%= javascript_pack_tag 'hello_vue' %> ``` ## Resolve url loader Since `Sass/libsass` does not provide url rewriting, all linked assets must be relative to the output. Add the missing url rewriting using the resolve-url-loader. Place it directly after the sass-loader in the loader chain. ```bash yarn add resolve-url-loader ``` ```js // webpack/environment.js const { environment } = require('@rails/webpacker') // resolve-url-loader must be used before sass-loader environment.loaders.get('sass').use.splice(-1, 0, { loader: 'resolve-url-loader' }) module.exports = environment ``` ## Working with TypeScript In order to get CSS to work with typescript you have two options. You can either use `require` to bypass typescript special `import`. ```ts const styles = require('../hello_react/styles/hello-react') ``` You may also use the package [typings-for-css-modules-loader](https://github.com/Jimdo/typings-for-css-modules-loader) instead of `css-loader` to automatically generate typescript `.d.ts` files in order to help resolve any css/scss styles. To do that: ```js // app/javascript/packs/hello_react.jsx import * as styles from '../hello_react.styles/hello-react.module.scss' ``` ```bash yarn add --dev typings-for-css-modules-loader ``` ```js // webpack/environment.js const { environment } = require('@rails/webpacker') // replace css-loader with typings-for-css-modules-loader environment.loaders.get('moduleSass').use = environment.loaders .get('moduleSass') .use.map((u) => { if (u.loader == 'css-loader') { return { ...u, loader: 'typings-for-css-modules-loader' } } else { return u } }) ```