Skip to content

Commit

Permalink
Merge pull request #21 from codecShivam/main
Browse files Browse the repository at this point in the history
added osdc as community partner
  • Loading branch information
Mr-Sunglasses authored Nov 16, 2023
2 parents eba0dfc + b49addf commit fd51344
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions src/pages/_/Partners/index.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { Image } from 'astro:assets';
import Osdc from './logos/osdc.png';
import Ocd from './logos/ocd.png';
import AssetMantle from './logos/assetmantle.svg';
Expand All @@ -15,6 +15,12 @@ const partners: any[] = [
images: AssetMantle,
link: 'https://www.assetmantle.one/',
},
{
name: 'OSDC',
images: Osdc,
width: '280px',
link: 'https://osdc.dev',
},
];
---

Expand All @@ -41,13 +47,14 @@ const partners: any[] = [
}
.partners {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
grid-template-columns: repeat(2, minmax(220px, 1fr));
grid-gap: 1rem;
justify-content: center;
align-items: center;
}
.partner-item {
margin-bottom: 1rem; /* Add some margin between logos */
margin-bottom: 1rem;
margin: 0 auto;
}
@media screen and (min-width: 768px) {
.partners {
Expand All @@ -59,11 +66,15 @@ const partners: any[] = [
justify-content: space-between;
}
}
@media screen and (max-width: 767px) {
.partners {
justify-content: center;
}
}
img {
margin: 0;
height: fit-content;
max-width: 100%;
width: fit-content;
}
</style>

Binary file added src/pages/_/Partners/logos/osdc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fd51344

Please sign in to comment.