Skip to content

Instantly share code, notes, and snippets.

@Richardtugwell
Richardtugwell / gist:f9fa664a4bd87aa84f3728ac3a3723d2
Last active September 30, 2017 19:51
Lucee / ACF structFilter issue
<cfscript>
foo = 2;
bar = 3;
function test( required any foo , required any bar ) {
return arguments;
};
args = test( foo , bar );
/* crude fix for Lucee
args = deserializeJSON(serializeJSon(test( foo , bar )));
*/
.who-we-are, .what-we-do, .foreign-climes, .roping-up {
display: grid;
grid-gap: 10px 10px;
}
@media (max-width: 719px) {
.who-we-are, .what-we-do, .foreign-climes {
grid-template-columns: 1fr 1fr;
grid-template-rows: auto repeat( 2, 200px) ;
&__text {
grid-column: span 2;