Skip to content

Commit

Permalink
3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
johno committed Jan 1, 2018
1 parent 726208c commit ffb607a
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 15 deletions.
9 changes: 5 additions & 4 deletions css/tachyons-box-sizing.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/*
Box Sizing
*/
html, body, div, article, section, main, footer, header, form, fieldset, legend,
pre, code, p, a, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, textarea,
input[type="email"], input[type="number"], input[type="password"],
input[type="tel"], input[type="text"], input[type="url"], .border-box { box-sizing: border-box; }
html, body, div, article, aside, section, main, nav, footer, header, form,
fieldset, legend, pre, code, p, a, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt,
dd, blockquote, figcaption, figure, textarea, input[type="email"],
input[type="number"], input[type="password"], input[type="tel"],
input[type="text"], input[type="url"], .border-box { box-sizing: border-box; }

2 changes: 1 addition & 1 deletion css/tachyons-box-sizing.min.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.border-box,a,article,body,code,dd,div,dl,dt,fieldset,footer,form,h1,h2,h3,h4,h5,h6,header,html,input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],legend,li,main,ol,p,pre,section,textarea,ul{box-sizing:border-box}
.border-box,a,article,aside,blockquote,body,code,dd,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,html,input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],legend,li,main,nav,ol,p,pre,section,textarea,ul{box-sizing:border-box}

File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tachyons-box-sizing",
"version": "3.2.1",
"version": "3.2.2",
"style": "src/tachyons-box-sizing.css",
"main": "src/tachyons-box-sizing.css",
"description": "Css module for a smarter default box-model.",
Expand Down
19 changes: 10 additions & 9 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# tachyons-box-sizing 3.1.7
# tachyons-box-sizing 3.2.2

Performance based css module.
Css module for a smarter default box-model.

#### Stats
### Stats

223 | 35 | 1
249 | 40 | 1
---|---|---
bytes | selectors | declarations

Expand Down Expand Up @@ -55,7 +55,7 @@ $ tachyons path/to/css-file.css > dist/t.css
The easiest and most simple way to use the css is to use the cdn hosted version. Include it in the head of your html with:

```
<link rel="stylesheet" href="http://unpkg.com/tachyons-box-sizing@3.1.7/css/tachyons-box-sizing.min.css" />
<link rel="stylesheet" href="http://unpkg.com/tachyons-box-sizing@3.2.2/css/tachyons-box-sizing.min.css" />
```

##### Locally
Expand All @@ -77,10 +77,11 @@ Running `$ npm start` will process the source css and place the built css in the
/*
Box Sizing
*/
html, body, div, article, section, main, footer, header, form, fieldset, legend,
pre, code, p, a, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, textarea,
input[type="email"], input[type="number"], input[type="password"],
input[type="tel"], input[type="text"], input[type="url"], .border-box { box-sizing: border-box; }
html, body, div, article, aside, section, main, nav, footer, header, form,
fieldset, legend, pre, code, p, a, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt,
dd, blockquote, figcaption, figure, textarea, input[type="email"],
input[type="number"], input[type="password"], input[type="tel"],
input[type="text"], input[type="url"], .border-box { box-sizing: border-box; }
```

## Contributing
Expand Down
5 changes: 5 additions & 0 deletions src/tachyons-box-sizing.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ html,
body,
div,
article,
aside,
section,
main,
nav,
footer,
header,
form,
Expand All @@ -20,6 +22,9 @@ a,
h1,h2,h3,h4,h5,h6,
ul,ol,li,
dl,dt,dd,
blockquote,
figcaption,
figure,
textarea,
input[type="email"],
input[type="number"],
Expand Down

0 comments on commit ffb607a

Please sign in to comment.