@eturnity/eturnity_reusable_components 1.1.77 → 1.1.78
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/package.json
CHANGED
|
@@ -417,7 +417,7 @@ const NestedAttrs = { isNested: Boolean }
|
|
|
417
417
|
const NestedContainer = styled("div", NestedAttrs)`
|
|
418
418
|
display: grid;
|
|
419
419
|
grid-gap: 5px;
|
|
420
|
-
grid-template-columns: auto 1fr;
|
|
420
|
+
grid-template-columns: ${(props) => (props.isNested ? "auto 1fr" : "1fr")};
|
|
421
421
|
align-items: center;
|
|
422
422
|
`
|
|
423
423
|
|