Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified web/public/logos/png/aiven-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/amazonaurora.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/amazonrds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/azure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/clickhouse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/cloudnativepg-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/crunchybridge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/digitalocean.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/googlealloydb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/googlecloudsql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/ibm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/neon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/oracle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/percona.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/planetscale.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/stackgres.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/supabase.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/tiger.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/ubicloud.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/yugabyte-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/public/logos/png/zalando.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions web/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ const platformGroups = [
{g.items.map((p) => (
<div class="plat-tile">
<span class={`plat-chip${p.darkChip ? ' plat-chip--dark' : ''}`} aria-hidden="true">
<img class="plat-logo" src={`/logos/png/${p.logo}.png`} alt="" loading="lazy" decoding="async" width="26" height="26" />
<img class="plat-logo" data-logo={p.logo} src={`/logos/png/${p.logo}.png`} alt="" loading="lazy" decoding="async" width="26" height="26" />
</span>
<span class="plat-name">{p.name}</span>
</div>
Expand Down Expand Up @@ -1105,7 +1105,14 @@ const platformGroups = [
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
transition: box-shadow 0.18s ease;
}
.plat-logo { display: block; width: 26px; height: 26px; object-fit: contain; }
/* Logos are pre-trimmed to a tight, centred square canvas, so a single
box size gives even optical weight. Square marks sit at 25px; wide
wordmarks (Oracle, IBM, Ubicloud) are capped by width so they read at
the same stroke weight without ballooning the chip vertically. */
.plat-logo { display: block; width: 25px; height: 25px; object-fit: contain; }
.plat-logo[data-logo='oracle'] { width: 30px; height: 30px; }
.plat-logo[data-logo='ibm'] { width: 28px; height: 28px; }
.plat-logo[data-logo='ubicloud'] { width: 29px; height: 29px; }
/* Tiger Data's badge is a pale yellow circle with a white tiger cutout —
it vanishes on the light neutral chip. Give just that tile a dark chip
so the badge reads clearly in both the light and dark themes. */
Expand Down
Loading