Correction valeur "inherit"

This commit is contained in:
Raphaël Goetter 2021-05-18 23:17:17 +02:00
parent 4d8ce9b36e
commit cddc2d472a
3 changed files with 6 additions and 6 deletions

View file

@ -2151,7 +2151,7 @@ template {
} }
.text-inherit { .text-inherit {
font-size: "inherit"; font-size: inherit;
} }
@media (min-width: 576px) { @media (min-width: 576px) {
@ -2354,19 +2354,19 @@ template {
@media (min-width: 576px) { @media (min-width: 576px) {
.sm\:text-inherit { .sm\:text-inherit {
font-size: "inherit"; font-size: inherit;
} }
} }
@media (min-width: 992px) { @media (min-width: 992px) {
.md\:text-inherit { .md\:text-inherit {
font-size: "inherit"; font-size: inherit;
} }
} }
@media (min-width: 1330px) { @media (min-width: 1330px) {
.lg\:text-inherit { .lg\:text-inherit {
font-size: "inherit"; font-size: inherit;
} }
} }

File diff suppressed because one or more lines are too long

View file

@ -92,7 +92,7 @@ $font-size: (
"30": 1.875rem, "30": 1.875rem,
"36": 2.25rem, "36": 2.25rem,
"base": 1rem, "base": 1rem,
"inherit": "inherit", "inherit": inherit,
); );
$font-size-html: 100%; $font-size-html: 100%;