Skip to content

Commit 2db1e38

Browse files
Improved readability
1 parent fe0f1db commit 2db1e38

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

css/grid.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,20 @@
44
*,
55
*:before,
66
*:after {
7-
box-sizing: border-box;
7+
-webkit-box-sizing: border-box;
8+
box-sizing: border-box;
9+
-webkit-font-smoothing: antialiased;
10+
-moz-osx-font-smoothing: grayscale;
811
margin: 0;
912
padding: 0;
13+
text-rendering: optimizeLegibility;
1014
}
1115

1216
/**
1317
* Global
1418
*/
1519
body {
16-
color: #666;
20+
color: #333;
1721
font-family: -apple-system,
1822
BlinkMacSystemFont,
1923
"Segoe UI",
@@ -86,4 +90,4 @@ div[class*="col-"] {
8690
.col-1-8 {
8791
width: 12.5%;
8892
}
89-
}
93+
}

css/grid.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "responsive-css-grid",
33
"description": "A super-lightweight, responsive, 8-column grid based on box-sizing",
4-
"version": "1.0.5",
4+
"version": "1.0.6",
55
"homepage": "https://github.com/allthingssmitty/responsive-css-grid",
66
"author": "Matt Smith <matt@allthingssmitty.com> (http://allthingssmitty.com)",
77
"maintainers": [

0 commit comments

Comments
 (0)