Suppression min-height: 0 par défaut

This commit is contained in:
Raphaël Goetter 2021-07-09 14:12:15 +02:00
parent cddc2d472a
commit 8e95e4cdd9
6 changed files with 6 additions and 8 deletions

View file

@ -4,7 +4,7 @@
/*
* 1. Switch to border-box model for all elements
* 2. Avoid min-width: auto and min-height: auto on flex and grid children
* 2. Avoid min-width: auto on flex and grid items
*/
*,
@ -12,7 +12,6 @@
*::after {
box-sizing: border-box; /* 1 */
min-width: 0; /* 2 */
min-height: 0; /* 2 */
}
/*