Skip to content

Commit

Permalink
Add vendor-prefix to align-items
Browse files Browse the repository at this point in the history
  • Loading branch information
t32k committed Jan 30, 2015
1 parent d2c1cd8 commit afdc0ec
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wisteria",
"version": "0.7.2",
"version": "0.7.3",
"main": "wisteria.css",
"homepage": "https://github.com/t32k/wisteria",
"authors": "Koji Ishimoto <[email protected]>",
Expand Down
12 changes: 9 additions & 3 deletions docs/css/wisteria.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,15 @@ a:hover { color: #4527A0; }
-webkit-flex: none !important;
flex: none !important; }

.g-row--top { align-items: flex-start; }
.g-row--bottom { align-items: flex-end; }
.g-row--center { align-items: center; }
.g-row--top {
-webkit-align-items: flex-start;
align-items: flex-start; }
.g-row--bottom {
-webkit-align-items: flex-end;
align-items: flex-end; }
.g-row--center {
-webkit-align-items: center;
align-items: center; }

@media (min-width: 550px) {
.g-col {
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="inner">
<h1 class="h1 u-ptl">Wisteria</h1>
<p class="u-fz4">A class selectors based harmless CSS library.</p>
<p class="b u-mbx">v0.7.2</p>
<p class="b u-mbx">v0.7.3</p>
<p><a href="https://github.com/t32k/wisteria/archive/master.zip" class="button">Download Wisteria</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wisteria",
"version": "0.7.2",
"version": "0.7.3",
"description": "A class selectors based harmless CSS library.",
"main": "wisteria.css",
"scripts": {
Expand Down
12 changes: 9 additions & 3 deletions wisteria.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,15 @@ a:hover { color: #4527A0; }
-webkit-flex: none !important;
flex: none !important; }

.g-row--top { align-items: flex-start; }
.g-row--bottom { align-items: flex-end; }
.g-row--center { align-items: center; }
.g-row--top {
-webkit-align-items: flex-start;
align-items: flex-start; }
.g-row--bottom {
-webkit-align-items: flex-end;
align-items: flex-end; }
.g-row--center {
-webkit-align-items: center;
align-items: center; }

@media (min-width: 550px) {
.g-col {
Expand Down
2 changes: 1 addition & 1 deletion wisteria.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit afdc0ec

Please sign in to comment.