Installation

How to start using the Design System in your project

We recommend using npm to install the Design System and compiling the CSS from the source. This is because:

  • npm makes it easier for you to stay up to date with any additions or bug fixes
  • there are some easy component customisation options available to you if you compile the CSS yourself

What you need to do

  1. Install Node.js.

    We recommend using the latest Long Term Support (LTS) version, or a minimum of version 8.10.0.

  2. If your project does not already have a package.json file, create one by running this command from your project’s root folder:

    npm init
  3. Install a SASS compiler. We recommend installing Dart Sass into your project.

    npm install sass --save-dev

Dart Sass will give warnings when compiling CSS because of a breaking change to how Sass will handle division in the future. You can avoid these warnings by using an older version of Dart Sass.

npm install sass@1.32.12 --save-dev
  1. Install the Design System with this command:

    npm install @scottish-government/pattern-library --save-dev

    You’ll now have a copy of the Design System’s source code in your project’s node_modules folder.

Using the Design System

SASS and CSS

A typical starting point for your main SCSS file might look something like this.

@import "/path/to/base/all-base";
@import "/path/to/forms/all-forms";
@import "/path/to/components/all-components";

You’ll always need to include the base styles in your file. They contain the typography and colour rules used by the components, and a number of helpful SASS mixins and functions used by them.

You can choose which components you want to include. You do not need to include them all if you do not want to. For example:

@import "/path/to/base/all-base";  
@import "/path/to/forms/all-forms";  
@import "/path/to/components/accordion/accordion";  
@import "/path/to/components/breadcrumbs/breadcrumbs";  
@import "/path/to/components/page-header/page-header";

JavaScript

The JavaScript for Design System components is written as ECMAScript (ES) modules. As native browser support for ES modules is limited, you’ll need other tools to compile the ES modules into a format that web browsers will understand.

We use Webpack to compile the scripts and Babel to convert the script to ES5 for older browsers.

Feedback, help or support

If you need any help or want to give any feedback you can e-mail us at: designsystem@gov.scot

Back to top