correction d'alignement vertical de .nav-button

This commit is contained in:
Raphael Goetter 2018-10-24 10:14:52 +02:00
parent a85af1ee32
commit 5bd082dfef
7 changed files with 634 additions and 987 deletions

View File

@ -1,3 +1,6 @@
# changelog v7.0.9 (24 octobre 2018)
- correction d'alignement vertical de `.nav-button`
# changelog v7.0.8 (20 septembre 2018) # changelog v7.0.8 (20 septembre 2018)
- suppression de `white-space: nowrap` sur les éléments de formulaire - suppression de `white-space: nowrap` sur les éléments de formulaire

View File

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* www.KNACSS.com v7.0.8 (september, 20 2018) @author: Alsacreations, Raphael Goetter * www.KNACSS.com v7.0.9 (october, 24 2018) @author: Alsacreations, Raphael Goetter
* Licence WTFPL http://www.wtfpl.net/ * Licence WTFPL http://www.wtfpl.net/
*/ */
/* ----------------------------- */ /* ----------------------------- */
@ -2266,7 +2266,8 @@ button:focus {
} }
.nav-button > * { .nav-button > * {
display: flex; display: inline-flex;
vertical-align: top;
flex-direction: column; flex-direction: column;
justify-content: space-between; justify-content: space-between;
align-items: stretch; align-items: stretch;

File diff suppressed because one or more lines are too long

1592
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "knacss", "name": "knacss",
"version": "7.0.8", "version": "7.0.9",
"homepage": "http://www.knacss.com/", "homepage": "http://www.knacss.com/",
"bugs": "https://github.com/alsacreations/KNACSS/issues", "bugs": "https://github.com/alsacreations/KNACSS/issues",
"author": "Raphaël GOETTER, Alsacreations", "author": "Raphaël GOETTER, Alsacreations",
@ -26,12 +26,12 @@
"license": "WTFPL", "license": "WTFPL",
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"gulp": "^3.9.1", "gulp": "latest",
"gulp-autoprefixer": "^6.0.0", "gulp-autoprefixer": "latest",
"gulp-clean-css": "^3.10.0", "gulp-clean-css": "latest",
"gulp-concat": "latest", "gulp-concat": "latest",
"gulp-rename": "^1.4.0", "gulp-rename": "latest",
"gulp-sass": "^4.0.1" "gulp-sass": "latest"
}, },
"engines": {} "engines": {}
} }

View File

@ -102,7 +102,8 @@ button {
-webkit-tap-highlight-color: transparent; -webkit-tap-highlight-color: transparent;
& > * { & > * {
display: flex; display: inline-flex;
vertical-align: top;
flex-direction: column; flex-direction: column;
justify-content: space-between; justify-content: space-between;
align-items: stretch; align-items: stretch;

View File

@ -1,5 +1,5 @@
/*! /*!
* www.KNACSS.com v7.0.8 (september, 20 2018) @author: Alsacreations, Raphael Goetter * www.KNACSS.com v7.0.9 (october, 24 2018) @author: Alsacreations, Raphael Goetter
* Licence WTFPL http://www.wtfpl.net/ * Licence WTFPL http://www.wtfpl.net/
*/ */