1.0.0 • Published 4 years ago

@mezzo-forte/gui v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

Mezzo Forte GUI and style utilities

Includes basic css style and Messina Sans font.

Usage

Install with npm install @mezzo-forte/gui

Then load with webpack using css-loader and url loader.

(install with npm install --save-dev css-loader url-loader)

Add to webpack.config.js

module: {
  rules: [
    {
      test: /\.css$/i,
      use: ['style-loader', 'css-loader'],
    },
    { test: /\.(png|woff|woff2|eot|ttf|svg)$/,
      loader: 'url-loader'
    }
  ]
}

Then import in files where needed:

import '@mezzo-forte/gui';