correction d'alignement vertical de .nav-button
This commit is contained in:
parent
a85af1ee32
commit
5bd082dfef
7 changed files with 634 additions and 987 deletions
|
@ -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)
|
||||
- suppression de `white-space: nowrap` sur les éléments de formulaire
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
@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/
|
||||
*/
|
||||
/* ----------------------------- */
|
||||
|
@ -2266,7 +2266,8 @@ button:focus {
|
|||
}
|
||||
|
||||
.nav-button > * {
|
||||
display: flex;
|
||||
display: inline-flex;
|
||||
vertical-align: top;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: stretch;
|
||||
|
|
File diff suppressed because one or more lines are too long
1592
package-lock.json
generated
1592
package-lock.json
generated
File diff suppressed because it is too large
Load diff
12
package.json
12
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "knacss",
|
||||
"version": "7.0.8",
|
||||
"version": "7.0.9",
|
||||
"homepage": "http://www.knacss.com/",
|
||||
"bugs": "https://github.com/alsacreations/KNACSS/issues",
|
||||
"author": "Raphaël GOETTER, Alsacreations",
|
||||
|
@ -26,12 +26,12 @@
|
|||
"license": "WTFPL",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-autoprefixer": "^6.0.0",
|
||||
"gulp-clean-css": "^3.10.0",
|
||||
"gulp": "latest",
|
||||
"gulp-autoprefixer": "latest",
|
||||
"gulp-clean-css": "latest",
|
||||
"gulp-concat": "latest",
|
||||
"gulp-rename": "^1.4.0",
|
||||
"gulp-sass": "^4.0.1"
|
||||
"gulp-rename": "latest",
|
||||
"gulp-sass": "latest"
|
||||
},
|
||||
"engines": {}
|
||||
}
|
||||
|
|
|
@ -102,7 +102,8 @@ button {
|
|||
-webkit-tap-highlight-color: transparent;
|
||||
|
||||
& > * {
|
||||
display: flex;
|
||||
display: inline-flex;
|
||||
vertical-align: top;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: stretch;
|
||||
|
|
|
@ -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/
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue