@nrg-ui/css
v0.10.0
Published
<!-- markdownlint-disable-file MD033 -->
Downloads
180
Readme
@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 install @nrg-ui/css
yarn add @nrg-ui/css
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.