Sign In

hagrid

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hagrid - npm Package Compare versions

Package was removed
Sorry, it seems this package was removed from the registry
Comparing version
3.0.0
to
3.1.0
+1
-1
bower.json
{
"name": "hagrid",
"version": "3.0.0",
"version": "3.1.0",
"authors": [

@@ -5,0 +5,0 @@ "felics <hi@felics.me>"

{
"name": "hagrid",
"version": "3.0.0",
"version": "3.1.0",
"license": "MIT",

@@ -26,11 +26,11 @@ "main": "scss/_hagrid.scss",

"devDependencies": {
"gulp": "^3.9.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-jade": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.1.1",
"sassdoc": "^2.1.19",
"stylelint": "^4.2.0",
"stylelint-config-standard": "^3.0.0"
"gulp-sass": "^2.3.1",
"sassdoc": "^2.1.20",
"stylelint": "^6.3.3",
"stylelint-config-standard": "^7.0.0"
}
}

@@ -85,5 +85,5 @@ <h1 align="center">

// * Specify gutters between items. They are used like modifiers or applied to all grids
$hagrid-gutters: (
// * If $layout-gutters exists it will be used instead (so you don't have to modify this file directly)
$hagrid-gutters-default: (
default: 1.5rem,

@@ -96,3 +96,4 @@ full: 0,

// * Set common breakpoints used in your project. Can be used in the @bp-mixin (see below)
$hagrid-breakpoints: (
// * If $layout-breakpoints exists it will be used instead (so you don't have to modify this file directly)
$hagrid-breakpoints-default: (
sm: "(min-width: 35.5em)",

@@ -99,0 +100,0 @@ md: "(min-width: 48em)",

@@ -9,7 +9,6 @@

/// Gutters
/// Set gutters usable as modifiers
/// Default gutters
/// @property {Number}
$hagrid-gutters:
$hagrid-gutters-default:
(

@@ -22,8 +21,13 @@ default: 1.5rem,

/// Breakpoints
/// Can be used for the grid e.g. @include i(breakpoint 2/3)
/// Can be used for mediaqueries @include bp(breakpoint){@content}
/// Gutters
/// Set gutters usable as modifiers.
/// Overwritten by $layout-gutters if it exists
/// @property {Number}
$hagrid-gutters: if(variable-exists(layout-gutters), $layout-gutters, $hagrid-gutters-default);
/// Default breakpoints
/// @property {String}
$hagrid-breakpoints:
$hagrid-breakpoints-default:
(

@@ -36,2 +40,10 @@ sm: "(min-width: 35.5em)",

/// Breakpoints
/// Can be used for the grid e.g. @include i(breakpoint 2/3)
/// Can be used for mediaqueries @include bp(breakpoint){@content}
/// Overwritten by $layout-breakpoints if it exists
/// @property {String}
$hagrid-breakpoints: if(variable-exists(layout-breakpoints), $layout-breakpoints, $hagrid-breakpoints-default);
/// Gutter & Modifier Selector

@@ -38,0 +50,0 @@ /// Gutters and modifiers are applied to all children of each grid-container