This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 ))); | |
*/ |