🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
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.1.0
to
3.1.2
+3
.travis.yml
language: node_js
node_js:
- "6"
+1
-1
{
"name": "hagrid",
"version": "3.1.0",
"version": "3.1.2",
"authors": [

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

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

@@ -25,2 +25,5 @@ "main": "scss/_hagrid.scss",

},
"scripts": {
"test": "stylelint -s scss scss/**/*.scss"
},
"devDependencies": {

@@ -33,5 +36,5 @@ "gulp": "^3.9.1",

"sassdoc": "^2.1.20",
"stylelint": "^6.3.3",
"stylelint-config-standard": "^7.0.0"
"stylelint": "^6.5.1",
"stylelint-config-standard": "^9.0.0"
}
}

@@ -1,6 +0,3 @@

<h1 align="center">
<img width="237" src="http://felics.me/\_assets/ext/hagrid/logo.png" alt="logo">
</h1>
# Hagrid ![Logo](https://felics.me/_assets/ext/hagrid/logo.png)
## Contents:

@@ -87,3 +84,3 @@

// * If $layout-gutters exists it will be used instead (so you don't have to modify this file directly)
$hagrid-gutters-default: (
$hagrid-gutters: (
default: 1.5rem,

@@ -93,7 +90,7 @@ full: 0,

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

@@ -103,7 +100,7 @@ md: "(min-width: 48em)",

xl: "(min-width: 80em)"
);
) !default;
// * Gutters and modifiers are applied to all items of each grid-container
// * By default, the selector `> *` is used. If you use a consistent selector for grid-items, you can set it here
$hagrid-item-selector: "> *";
$hagrid-item-selector: "> *" !default;
```

@@ -110,0 +107,0 @@

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

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

@@ -19,15 +20,10 @@ default: 1.5rem,

wide: 3rem
);
) !default;
/// 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
/// Breakpoints
/// Can be used for the grid e.g. @include i(breakpoint 2/3)
/// Can be used for mediaqueries @include bp(breakpoint){@content}
/// @property {String}
$hagrid-breakpoints-default:
$hagrid-breakpoints:
(

@@ -38,12 +34,4 @@ sm: "(min-width: 35.5em)",

xl: "(min-width: 80em)"
);
) !default;
/// 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

@@ -54,3 +42,3 @@ /// Gutters and modifiers are applied to all children of each grid-container

$hagrid-item-selector: "> *";
$hagrid-item-selector: "> *" !default;

@@ -57,0 +45,0 @@ @import "hagrid/core";

@@ -28,2 +28,3 @@

box-sizing: border-box;
flex-basis: auto;
flex-shrink: 0;

@@ -30,0 +31,0 @@