Skip to content

Commit 8ab9183

Browse files
author
mrmrs
committed
Update css to fix bug
1 parent 83a2eaf commit 8ab9183

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

css/tachyons.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1710,7 +1710,7 @@ code, .code { font-family: Consolas, monaco, monospace; }
17101710
/* Can combine this with overflow-hidden to make background images grow on hover
17111711
* even if you are using background-size: cover */
17121712
.grow { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); -webkit-transition: -webkit-transform .25s ease-out; transition: -webkit-transform .25s ease-out; transition: transform .25s ease-out; transition: transform .25s ease-out, -webkit-transform .25s ease-out; }
1713-
.grow:hover, .grow:focus { -webkit-transform: scale( 15 ); transform: scale( 15 ); }
1713+
.grow:hover, .grow:focus { -webkit-transform: scale( 1.05 ); transform: scale( 1.05 ); }
17141714
.grow:active { -webkit-transform: scale( .90 ); transform: scale( .90 ); }
17151715
.grow-large { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); -webkit-transition: -webkit-transform .25s ease-in-out; transition: -webkit-transform .25s ease-in-out; transition: transform .25s ease-in-out; transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out; }
17161716
.grow-large:hover, .grow-large:focus { -webkit-transform: scale( 1.2 ); transform: scale( 1.2 ); }
@@ -1727,7 +1727,7 @@ code, .code { font-family: Consolas, monaco, monospace; }
17271727
.shadow-hover:hover::after, .shadow-hover:focus::after { opacity: 1; }
17281728
/* Combine with classes in skins and skins-pseudo for
17291729
* thousands of different transition possibilities. */
1730-
.bg-animate:hover, .bg-animate:focus { -webkit-transition: background-color .15s ease-in-out; transition: background-color .15s ease-in-out; }
1730+
.bg-animate, .bg-animate:hover, .bg-animate:focus { -webkit-transition: background-color .15s ease-in-out; transition: background-color .15s ease-in-out; }
17311731
/*
17321732
17331733
Z-INDEX

css/tachyons.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tachyons-css.github.io",
3-
"version": "4.5.1",
3+
"version": "4.5.3",
44
"description": "Documentation for Tachyons -- a performant, mobile-first, and 100% responsive modular css framework.",
55
"main": "index.html",
66
"scripts": {
@@ -11,10 +11,11 @@
1111
"build:watch": "watch 'node build.js' src/templates/",
1212
"docs:grid": "watch 'node src/modules/grid.js' src/templates/docs/grid/",
1313
"docs:links": "watch 'node src/modules/links.js' src/templates/docs/links/",
14+
"docs:pseudo": "watch 'node src/modules/skins-pseudo.js' src/templates/docs/skins-pseudo/",
1415
"docs:videos": "watch 'node src/modules/videos.js' src/templates/",
1516
"docs:hovers": "watch 'node src/modules/hovers.js' src/templates/docs/hovers/",
1617
"docs:measure": "watch 'node src/modules/measure.js' src/templates/docs/measure/",
17-
"docs:type": "watch 'node src/modules/scale.js' src/templates/docs/type-scale/",
18+
"docs:type": "watch 'node src/modules/type-scale.js' src/templates/docs/type-scale/",
1819
"docs:line-height": "watch 'node src/modules/line-height.js' src/templates/docs/line-height/",
1920
"doc": "bash script.sh",
2021
"doc:watch": "watch 'npm run doc' src/templates/docs",
@@ -65,7 +66,7 @@
6566
"tachyons-outlines": "^1.0.0",
6667
"tachyons-overflow": "^4.0.0",
6768
"tachyons-position": "^6.0.0",
68-
"tachyons-skins": "^3.2.4",
69+
"tachyons-skins": "^4.0.0",
6970
"tachyons-spacing": "^6.0.0",
7071
"tachyons-tables": "^1.0.3",
7172
"tachyons-text-align": "^3.0.0",
@@ -109,7 +110,7 @@
109110
"postcss": "^5.0.21",
110111
"postcss-browser-reporter": "^0.5.0",
111112
"postcss-conditionals": "^2.0.2",
112-
"postcss-css-variables": "^0.5.1",
113+
"postcss-css-variables": "^0.6.0",
113114
"postcss-custom-media": "^5.0.1",
114115
"postcss-custom-properties": "^5.0.1",
115116
"postcss-discard-comments": "^2.0.4",
@@ -124,6 +125,7 @@
124125
"tachyons-flexbox": "^2.0.1",
125126
"tachyons-modules": "^1.1.8",
126127
"tachyons-queries": "^0.3.1",
128+
"tachyons-skins-pseudo": "^1.0.1",
127129
"titleize": "^1.0.0",
128130
"watch": "^0.19.2"
129131
},

0 commit comments

Comments
 (0)