@genexus/mercury 0.4.21 → 0.4.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mercury.scss +2 -2
- package/package.json +1 -1
package/dist/mercury.scss
CHANGED
|
@@ -6467,8 +6467,8 @@ Body Spacing
|
|
|
6467
6467
|
--control__padding-inline: var(--grid-cell__padding-inline);
|
|
6468
6468
|
// to stretch the control
|
|
6469
6469
|
display: grid;
|
|
6470
|
-
align-items: stretch;
|
|
6471
|
-
justify-content: stretch;
|
|
6470
|
+
align-items: stretch !important; // WA to win over other rule that is more specific
|
|
6471
|
+
justify-content: stretch !important; // WA to win over other rule that is more specific
|
|
6472
6472
|
}
|
|
6473
6473
|
@mixin cell-node-type-element--hover() {
|
|
6474
6474
|
outline: var(--focus__outline-width) var(--focus__outline-style)
|
package/package.json
CHANGED