mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-23 05:05:50 +00:00
still waiting on cryptum light mode logo
This commit is contained in:
@@ -10,12 +10,12 @@ $(document).ready(() => {
|
||||
"onthedex",
|
||||
],
|
||||
developer_tooling: [
|
||||
"blockforce",
|
||||
"Cryptum",
|
||||
"Evernode",
|
||||
"threezy",
|
||||
"tokenize",
|
||||
],
|
||||
interoperability: ["Allbridge", "futureverse", "multichain"],
|
||||
interoperability: ["multichain"],
|
||||
wallet: [
|
||||
"Bitfrost",
|
||||
"Crossmark",
|
||||
@@ -35,15 +35,12 @@ $(document).ready(() => {
|
||||
exchanges: ["sologenic_dex", "XPMarket"],
|
||||
gaming: [
|
||||
"Forte",
|
||||
"Futureverse",
|
||||
"ledger-city",
|
||||
"onXRP",
|
||||
"styngr",
|
||||
],
|
||||
security: ["Anchain"],
|
||||
payments: ["ripple", "SuperMojo"],
|
||||
cbdc: ["ripple"],
|
||||
sustainability: ["carbonland-trust", "Rootmaker"],
|
||||
sustainability: ["carbonland-trust"],
|
||||
custody: ["Gatehub", "Bitgo"],
|
||||
};
|
||||
// Helper function to create a logo element
|
||||
@@ -132,6 +129,16 @@ $(document).ready(() => {
|
||||
const logoElem = createLogoElement(logoArray[i], title, id);
|
||||
bottomRowDiv.appendChild(logoElem);
|
||||
}
|
||||
}else if (logoArray.length === 8) {
|
||||
// 4 on top, 4 on bottom
|
||||
for (let i = 0; i < 4; i++) {
|
||||
const logoElem = createLogoElement(logoArray[i], title, id);
|
||||
topRowDiv.appendChild(logoElem);
|
||||
}
|
||||
for (let i = 4; i < 8; i++) {
|
||||
const logoElem = createLogoElement(logoArray[i], title, id);
|
||||
bottomRowDiv.appendChild(logoElem);
|
||||
}
|
||||
} else if (logoArray.length === 6) {
|
||||
// Special case: 3 on top, 3 on bottom
|
||||
for (let i = 0; i < 3; i++) {
|
||||
|
||||
Reference in New Issue
Block a user