Skip to content

Commit

Permalink
fixed a bunch of gh issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrayb committed Jan 16, 2025
1 parent aa2c5fe commit a34fc0c
Show file tree
Hide file tree
Showing 3 changed files with 129 additions and 113 deletions.
2 changes: 1 addition & 1 deletion public/sta/introduction/canvases.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $(document).ready(function() {

/********************************************************************************/

var rep_ff_c = new PrairieDrawAnim("rep-ff-c", function(t) {
rep_ff_c = new PrairieDrawAnim("rep-ff-c", function(t) {

var xViewMax = 3;
var yViewMax = 2;
Expand Down
21 changes: 21 additions & 0 deletions src/components/special/CalloutContainerContainer.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<style>
.callout-grid{
display: grid;
grid-template-columns: 1fr;
}

@media (min-width: 992px){
.callout-grid{
grid-template-columns: 20fr 7fr;
}
}
</style>

<div class="w-100 callout-grid">
<div class="w-100">
<slot />
</div>
<div class="w-100 ps-2">
<slot name="cards" />
</div>
</div>
Loading

0 comments on commit a34fc0c

Please sign in to comment.