Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@ng-dominus/dm-styles

daniel1919-005MIT1.2.0

Dominus css library

ng-dominus, dominus, dm-styles, flex, css

readme

Dominus css utilities

Lightweight library used to style the dominus components demo page. It can be used on any site along any other css libraries since all classes are prefixed with the dm: namespace.

Usage

Check out the documentation and demo.

Angular

Add the css file path in angular.json:

{
    "projects": {
        "YOUR_PROJECT": {
            "architect": {
                "build": {
                    "builder": "@angular-devkit/build-angular:browser",
                    "options": {
                        "styles": [
                            "src/styles.scss",
                            "node_modules/@ng-dominus/dm-styles/dm-styles.css"
                        ],
                    },
                },
            }
        }
    },
}

Static website

Append dm-styles.css in your site header.