correct syntax for fluid placeholder

This commit is contained in:
Jon McClure 2023-07-29 17:39:21 +01:00
parent 896ceb328c
commit d5d0564dd9

View file

@ -54,7 +54,7 @@ As a rule of thumb, if you're setting space between or adjacent to _text element
mdnLink="margin"
header={['Class', 'Include', 'Properties']}
body={cssStringToTableArray(fluidMargin, true)}
copyable={[true, (t) => `@include %${t};`, false]}
copyable={[true, (t) => `@extend %${t};`, false]}
/>
<CopyTable
@ -62,5 +62,5 @@ As a rule of thumb, if you're setting space between or adjacent to _text element
mdnLink="margin"
header={['Class', 'Include', 'Properties']}
body={cssStringToTableArray(fluidPadding, true)}
copyable={[true, (t) => `@include %${t};`, false]}
copyable={[true, (t) => `@extend %${t};`, false]}
/>