diff --git a/.stylelintrc.json b/.stylelintrc.json index 8f876c562aa..60c5bc78553 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -29,6 +29,8 @@ "no-duplicate-selectors": null, "scss/at-extend-no-missing-placeholder": null, "scss/at-import-partial-extension": null, + "scss/at-import-no-partial-leading-underscore": null, + "scss/load-no-partial-leading-underscore": null, "scss/at-mixin-pattern": null, "scss/comment-no-empty": null, "scss/dollar-variable-pattern": null, diff --git a/node_modules b/node_modules index 8c5596500c9..c695e6285cf 160000 --- a/node_modules +++ b/node_modules @@ -1 +1 @@ -Subproject commit 8c5596500c9b51c2a125130f19fe52f2f0c317d4 +Subproject commit c695e6285cfbff2fe5e5b69628fcc6aa7372c73a diff --git a/package.json b/package.json index 1ecb6782145..4749e5860ef 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "jed": "1.1.1", "qunit": "2.20.0", "qunit-tap": "1.5.1", - "sass": "1.69.4", + "sass": "1.69.5", "sizzle": "2.3.10", "stylelint": "15.11.0", "stylelint-config-standard": "34.0.0", diff --git a/pkg/lib/DynamicListForm.scss b/pkg/lib/DynamicListForm.scss index 1dfe40db8cf..2016fdaaaee 100644 --- a/pkg/lib/DynamicListForm.scss +++ b/pkg/lib/DynamicListForm.scss @@ -24,7 +24,7 @@ // Font height is font size * line height (1rem * 1.5) // Widgets have 5px padding, 1px border (top & bottom): (5 + 1) * 2 = 12 // This all equals to 36px - height: calc(var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--md) + 12px); + block-size: calc(var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--md) + 12px); align-content: center; }