Skip to content

Latest commit

 

History

History

design-system

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

@nrg-ui/css

This design system is built on top of Bootstrap. Note that this is not a full-fledged design system, but rather a collection of raw CSS that can be used in any web application. The Ember addon provides a more integrated experience for Ember applications.

Installation

npm
npm install @nrg-ui/css
yarn
yarn add @nrg-ui/css
pnpm
pnpm add @nrg-ui/css

Usage

To use the CSS in a non-Ember application, include the CSS in your project. The CSS is available in the dist directory of the package. You can include the CSS in your project using a <link> tag in your HTML file.

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>My App</title>
  <link rel="stylesheet" href="node_modules/@nrg-ui/css/dist/main.css">
</head>

<body>
  <h1>Hello, world!</h1>
</body>

</html>

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.