Skip to content

Commit

Permalink
Update to revision history
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetikonline committed Dec 5, 2017
1 parent c6a0ded commit 4abaaf5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions README.md
Expand Up @@ -14,6 +14,7 @@ Building a collection of my common use Sass mixins, functions and snippets. All
- [vendor.scss](#vendorscss)

## Revision history
- `2017-12-05` Update to Retina media query evaluation.
- `2017-03-15` Published initial [npm package](https://www.npmjs.com/package/sassboilerplate).
- `2015-03-24` Major rewrite supporting [Sass 3.4.0](http://sass-lang.com/documentation/file.SASS_CHANGELOG.html#340_18_august_2014) and above only, along with dropping of IE8 support and various implementation changes.
- `2014-10-02` Final release for [Sass 3.2.0](http://sass-lang.com/documentation/file.SASS_CHANGELOG.html#320_10_august_2012). Future revisions make strong use of features such as [Sass maps](http://sass-lang.com/documentation/file.SASS_CHANGELOG.html#sassscript_maps) and the [`@error`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#_7) directive. Release has been tagged as [final3.2](https://github.com/magnetikonline/sassboilerplate/tree/final3.2) if anyone is after it.
Expand Down Expand Up @@ -284,12 +285,9 @@ $logoWidth: 200px;
width: 200px;
}

@media (min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3 / 2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi),
(min-resolution: 1.5dppx) {
@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
only screen and (-o-min-device-pixel-ratio: 13/10),
only screen and (min-resolution: 120dpi) {
.companylogo {
background-image: url(companylogo2x.png);
background-size: 200px;
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "sassboilerplate",
"version": "0.2.0",
"version": "0.2.1",
"description": "A collection of common use Sass stylesheets, mixins and functions.",
"keywords": [
"css",
Expand Down

0 comments on commit 4abaaf5

Please sign in to comment.