-
| mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). |
-
mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc.
For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc).
+
| mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). |
+
mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc.
For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc).
diff --git a/frontend/src/app/docs/api-docs/api-docs.component.scss b/frontend/src/app/docs/api-docs/api-docs.component.scss
index 180f6830d..8e4c0c7a9 100644
--- a/frontend/src/app/docs/api-docs/api-docs.component.scss
+++ b/frontend/src/app/docs/api-docs/api-docs.component.scss
@@ -274,15 +274,8 @@ h3 {
margin: 24px 0;
}
-#disclaimer > div svg {
- display: block;
- margin: 2px auto 16px;
-}
-
-#disclaimer svg {
- width: 50px;
- height: auto;
- margin-right: 32px;
+.disclaimer-warning {
+ margin-right: 50px;
}
#disclaimer p:last-child {
@@ -299,6 +292,12 @@ h3 {
display: none;
}
+ .disclaimer-warning {
+ display: block;
+ margin: 2px auto 16px;
+ text-align: center;
+ }
+
.doc-content {
width: 100%;
float: unset;
diff --git a/frontend/src/app/docs/api-docs/api-docs.component.ts b/frontend/src/app/docs/api-docs/api-docs.component.ts
index 1d5eec453..62a0fadba 100644
--- a/frontend/src/app/docs/api-docs/api-docs.component.ts
+++ b/frontend/src/app/docs/api-docs/api-docs.component.ts
@@ -29,6 +29,7 @@ export class ApiDocsComponent implements OnInit, AfterViewInit {
screenWidth: number;
officialMempoolInstance: boolean;
auditEnabled: boolean;
+ mobileViewport: boolean = false;
@ViewChildren(FaqTemplateDirective) faqTemplates: QueryList
;
dict = {};
@@ -43,6 +44,7 @@ export class ApiDocsComponent implements OnInit, AfterViewInit {
this.faqTemplates.forEach((x) => this.dict[x.type] = x.template);
}
this.desktopDocsNavPosition = ( window.pageYOffset > 182 ) ? "fixed" : "relative";
+ this.mobileViewport = window.innerWidth <= 992;
}
ngAfterViewInit() {