diff --git a/component.json b/component.json index 6cec394..455bf29 100644 --- a/component.json +++ b/component.json @@ -40,5 +40,11 @@ "src" ], "repo": "milligram/milligram", - "styles": ["dist/milligram.css"] + "styles": [ + "demo", + "dist/milligram.css", + "dist/milligram.min.css", + "license", + "readme.md" + ] } \ No newline at end of file diff --git a/gruntfile.js b/gruntfile.js index aa4c4ad..9f81e37 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -19,7 +19,7 @@ module.exports = function ( grunt ) { ' * Milligram v<%= pkg.version %>\n'+ ' * <%= pkg.homepage %>\n'+ ' *\n'+ - ' * Copyright (c) 2015, CJ Patoilo\n'+ + ' * Copyright (c) '+new Date().getFullYear()+' CJ Patoilo\n'+ ' * Licensed under the <%= pkg.license %> license\n'+ '*/\n\n', diff --git a/src/_Button.sass b/src/_Button.sass index 0108f1a..7ae47bd 100644 --- a/src/_Button.sass +++ b/src/_Button.sass @@ -10,7 +10,6 @@ input[type='submit'] background-color: $color-primary border: .1rem solid $color-primary border-radius: .4rem - box-sizing: border-box color: $color-initial cursor: pointer display: inline-block diff --git a/src/_Form.sass b/src/_Form.sass index 8d6488a..7da4087 100644 --- a/src/_Form.sass +++ b/src/_Form.sass @@ -16,7 +16,6 @@ select border: .1rem solid $color-quaternary border-radius: .4rem box-shadow: none - box-sizing: border-box height: 3.8rem padding: .6rem 1.0rem // The .6rem vertically centers text on FF, ignored by Webkit width: 100% diff --git a/src/_Grid.sass b/src/_Grid.sass index ee29416..a5b7d73 100644 --- a/src/_Grid.sass +++ b/src/_Grid.sass @@ -4,7 +4,6 @@ // .container is main centered wrapper with a max width of 1120rem (1120px) .container - box-sizing: border-box margin: 0 auto max-width: 112.0rem padding: 0 2.0rem