Skip to content

Commit

Permalink
remove eyeglass for better all-round support and fix paths to depdencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmartineau committed Jan 16, 2018
1 parent 43a83b6 commit b800d77
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "kickoff-grid.css",
"name": "@kickoff/grid.css",
"title": "Kickoff’s CSS Grid Module",
"description": "Simple powerful flexbox grid with float fallbacks",
"version": "1.2.0",
"version": "1.2.1",
"homepage": "http://trykickoff.com",
"repo": "https://github.com/trykickoff/kickoff-grid.css",
"main": "index.css",
Expand Down Expand Up @@ -38,9 +38,8 @@
"node": ">=4.0"
},
"dependencies": {
"eyeglass": "^1.1.2",
"include-media": "^1.4.8",
"kickoff-utils.scss": "^2.0.1"
"@kickoff/utils.scss": "^3.1.0",
"include-media": "^1.4.8"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
Expand Down
14 changes: 9 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
# kickoff-grid.css
# @kickoff/grid.css
> A simple, fully responsive, grid framework that can help you build complex layouts very easily.
> Works in combination with Sass or standard CSS

[![npm version](https://badge.fury.io/js/kickoff-grid.css.svg)](https://badge.fury.io/js/kickoff-grid.css)
[![npm version](https://badge.fury.io/js/@kickoff/grid.css.svg)](https://badge.fury.io/js/@kickoff/grid.css)

[![NPM](https://nodei.co/npm/kickoff-grid.css.png)](https://nodei.co/npm/kickoff-grid.css/)
[![NPM](https://nodei.co/npm/@kickoff/grid.css.png)](https://nodei.co/npm/@kickoff/grid.css/)

## Install

```
npm install kickoff-grid.css --save
npm install @kickoff/grid.css --save
or
yarn add @kickoff/grid.css
```

## Importing into your styles
Expand All @@ -25,7 +29,7 @@ This is similar to how you would import modules in JavaScript using NPM.

Alternatively, you can download the source files from Github and include them as you would normally. If you would like to do this, you will also need to download and include the [Kickoff Utils](https://github.com/TryKickoff/kickoff-utils.scss), as the grid relies on some of the functions it provides.

Finally, if you just want some straight up CSS, you can either grab a copy of the [generated CSS fileindex.css](https://github.com/TryKickoff/kickoff-grid.css/blob/master/index.css) which is based off our standard variables, or you can generate your own by downloading the repo, changing the variables in `scss/_grid-variables.scss` file and recompiling the code using Sass.
Finally, if you just want some straight up CSS, you can either grab a copy of the [generated CSS fileindex.css](https://github.com/TryKickoff/@kickoff/grid.css/blob/master/index.css) which is based off our standard variables, or you can generate your own by downloading the repo, changing the variables in `scss/_grid-variables.scss` file and recompiling the code using Sass.

## Custom Grid Variables

Expand Down
4 changes: 2 additions & 2 deletions scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* Breakpoint stacking
*/

@import "kickoff-utils"; // https://github.com/TryKickoff/kickoff-utils.scss
@import "../../utils.scss/scss/index"; // https://github.com/TryKickoff/kickoff-utils.scss

/* Import Grid helpers and mixins */
@import 'grid-variables';
@import "include-media"; // http://include-media.com
@import "../../../include-media/dist/include-media"; // http://include-media.com
@import 'grid-helpers';

/**
Expand Down

0 comments on commit b800d77

Please sign in to comment.