Skip to content

🎏 A simple, no-nonsense CSS reset stylesheet to use as an NPM dependency.

License

Notifications You must be signed in to change notification settings

mirego/simple-css-reset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-css-reset

Build Status npm

A simple, no-nonsense CSS reset stylesheet.

Installation

$ npm install --save simple-css-reset

Usage

Ember.js

You need the ember-cli-node-assets package to be able to import the CSS file into your application. Then you need to add the reset file to the ember-cli build file.

$ npm install --save-dev ember-cli-node-assets
// ember-cli-build.js
module.exports = function(defaults) {
  const app = new EmberApp(defaults, {
    nodeAssets: {
      'simple-css-reset': {
        import: ['reset.css']
      }
    }
  });
};

Webpack

Assuming you have properly installed and configured CSS loader, you can simply require the reset.css file within the entry point of your app.

$ npm install --save-dev css-loader
// index.js
import 'simple-css-reset/reset.css';

About

🎏 A simple, no-nonsense CSS reset stylesheet to use as an NPM dependency.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages