XRP overview: fix layout issue with hardware/software wallets

This commit is contained in:
mDuo13
2022-07-30 02:39:52 -07:00
parent b3298e58b6
commit 8acc50c57d

View File

@@ -153,24 +153,6 @@
<h2 class="h4 h2-sm mb-8">{% trans %}What Wallets Support XRP?{% endtrans %}</h2>
<h5 class="longform mb-10">{% trans %}Digital wallets are pieces of software that allow people to send, receive, and store cryptocurrencies, including XRP. There are two types of digital wallets: hardware and software.{% endtrans %}</h5>
<ul class="nav nav-grid-lg cols-of-4" id="wallets">
<li class="nav-item nav-grid-head">
<h6 class="fs-4-5">{% trans %}Hardware Wallets{% endtrans %}</h6>
</li>
{% set hardwallets = [
{ "href": "https://www.ledger.com/",
"id": "wallet-ledger",
"alt": _("Ledger"),
"imgclasses": "invertible-img" },
{ "href": "https://trezor.io/",
"id": "wallet-trezor",
"alt": _("Trezor"),
"imgclasses": "invertible-img"},
] %}
{% for wallet in hardwallets %}
<li class="nav-item">
<a class="nav-link external-link" href="{{wallet.href}}" target="_blank"><img class="mw-100 {% if wallet.imgclasses %}{{wallet.imgclasses}}{% endif %}" id="{{wallet.id}}" alt="{{wallet.alt}}" /></a>
</li>
{% endfor %}
<li class="nav-item nav-grid-head">
<h6 class="fs-4-5">{% trans %}Software Wallets{% endtrans %}</h6>
</li>
@@ -191,6 +173,24 @@
<a class="nav-link external-link" href="{{wallet.href}}" target="_blank"><img class="mw-100 {% if wallet.imgclasses %}{{wallet.imgclasses}}{% endif %}" id="{{wallet.id}}" alt="{{wallet.alt}}" /></a>
</li>
{% endfor %}
<li class="nav-item nav-grid-head">
<h6 class="fs-4-5">{% trans %}Hardware Wallets{% endtrans %}</h6>
</li>
{% set hardwallets = [
{ "href": "https://www.ledger.com/",
"id": "wallet-ledger",
"alt": _("Ledger"),
"imgclasses": "invertible-img" },
{ "href": "https://trezor.io/",
"id": "wallet-trezor",
"alt": _("Trezor"),
"imgclasses": "invertible-img"},
] %}
{% for wallet in hardwallets %}
<li class="nav-item">
<a class="nav-link external-link" href="{{wallet.href}}" target="_blank"><img class="mw-100 {% if wallet.imgclasses %}{{wallet.imgclasses}}{% endif %}" id="{{wallet.id}}" alt="{{wallet.alt}}" /></a>
</li>
{% endfor %}
</ul>
<p class="fs-3 mt-10">{% trans %}Disclaimer: This information is drawn from other sources on the internet. XRPL.org does not endorse or recommend any exchanges or make any representations with respect to exchanges or the purchase or sale of digital assets more generally. Its advisable to conduct your own due diligence before relying on any third party or third-party technology, and providers may vary significantly in their compliance, data security, and privacy practices.{% endtrans %}</p>
</div>