diff --git a/frontend/src/app/components/docs/api-docs-data.ts b/frontend/src/app/components/docs/api-docs-data.ts index a369ac63b..3e7d442c7 100644 --- a/frontend/src/app/components/docs/api-docs-data.ts +++ b/frontend/src/app/components/docs/api-docs-data.ts @@ -4433,7 +4433,7 @@ export const faqData = [ showConditions: bitcoinNetworks, fragment: "what-is-a-mempool-explorer", title: "What is a mempool explorer?", - answer: "

A mempool explorer is a tool that enables you to view real-time and historical information about a node's mempool, visualize its transactions, and search and view those transactions.

The mempool.space website invented the concept of visualizing a Bitcoin node's mempool as projected blocks. These blocks are the inspiration for our half-filled block logo.

Here's a snapshot of this visualization (which you can find on the main dashboard) as of block 729,556 in March 2022. Projected blocks are on the left of the dotted white line, and confirmed blocks are on the right.

" + answer: "

A mempool explorer is a tool that enables you to view real-time and historical information about a node's mempool, visualize its transactions, and search and view those transactions.

The mempool.space website invented the concept of visualizing a Bitcoin node's mempool as projected blocks. These blocks are the inspiration for our half-filled block logo.

Projected blocks are on the left of the dotted white line, and confirmed blocks are on the right.

" }, { type: "endpoint", diff --git a/frontend/src/app/components/docs/api-docs.component.html b/frontend/src/app/components/docs/api-docs.component.html index f33c777c9..6cb5839a0 100644 --- a/frontend/src/app/components/docs/api-docs.component.html +++ b/frontend/src/app/components/docs/api-docs.component.html @@ -1,6 +1,6 @@
- +
@@ -15,12 +15,15 @@
{{ item.title }}{{ item.category }}
+
+ +
- +
- +
diff --git a/frontend/src/app/components/docs/api-docs.component.scss b/frontend/src/app/components/docs/api-docs.component.scss index ce74cd951..91c85c346 100644 --- a/frontend/src/app/components/docs/api-docs.component.scss +++ b/frontend/src/app/components/docs/api-docs.component.scss @@ -187,6 +187,16 @@ h3 { border-radius: 0.5rem 0.5rem 0 0; } +.blockchain-wrapper { + position: relative; + width: 100%; + overflow: auto; + scrollbar-width: none; +} +.blockchain-wrapper::-webkit-scrollbar { + display: none; +} + @media (max-width: 992px) { .hide-on-mobile { @@ -239,7 +249,7 @@ h3 { h3 { display: none; } - + .doc-item-container:last-of-type .endpoint-container { margin-bottom: 4rem; }