Skip to content

Commit b8ec969

Browse files
authored
chore: added hackathon success card style updates (#102)
1 parent 2f959dc commit b8ec969

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

web/themes/interledger/css/components/cards.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,3 +462,29 @@
462462
padding: var(--space-l);
463463
background-color: transparent;
464464
}
465+
466+
/* Hackathon 2025 block styling */
467+
.hack-success-wrapper {
468+
gap: var(--space-m);
469+
grid-template-columns: repeat(2, 1fr);
470+
}
471+
472+
@media screen and (max-width: 899px) {
473+
.hack-success-wrapper {
474+
grid-template-columns: repeat(1, 1fr);
475+
}
476+
}
477+
478+
.hack-success-wrapper .card {
479+
border: 1px solid var(--color-primary-fallback);
480+
border: 1px solid var(--color-primary);
481+
}
482+
483+
.hack-success-wrapper h3 {
484+
font-size: var(--step-2);
485+
}
486+
487+
.hack-success-wrapper .card-content-wrapper {
488+
padding: var(--space-l);
489+
background-color: transparent;
490+
}

web/themes/interledger/interledger.libraries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
global-styling:
2-
version: 1.4.1
2+
version: 1.4.2
33
css:
44
theme:
55
css/fonts.css: {}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div class="content-wrapper hack-success-wrapper grid-layout">
2+
{{ rows }}
3+
</div>

0 commit comments

Comments
 (0)