Merge remote changes with CI/CD pipeline additions
Some checks failed
Deploy to Production / Deploy to Server (push) Has been cancelled
Some checks failed
Deploy to Production / Deploy to Server (push) Has been cancelled
Resolved minor conflict in rate limiting comment. Maintains CI/CD deployment setup with latest backend changes.
This commit is contained in:
commit
302c4b372a
14 changed files with 618 additions and 208 deletions
|
|
@ -44,7 +44,7 @@ nav .container { display: flex; align-items: center; justify-content: space-betw
|
|||
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
|
||||
|
||||
/* Code block */
|
||||
.code-section { margin: 56px auto 0; max-width: 660px; text-align: left; }
|
||||
.code-section { margin: 56px auto 0; max-width: 660px; text-align: left; display: flex; flex-direction: column; }
|
||||
.code-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: #1a1f2b; border: 1px solid var(--border); border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
|
||||
.code-dots { display: flex; gap: 6px; }
|
||||
.code-dots span { width: 10px; height: 10px; border-radius: 50%; }
|
||||
|
|
@ -186,6 +186,9 @@ html, body {
|
|||
.code-section {
|
||||
max-width: calc(100vw - 32px) !important;
|
||||
overflow: hidden !important;
|
||||
display: flex !important;
|
||||
flex-direction: column !important;
|
||||
white-space: normal !important;
|
||||
}
|
||||
.code-block {
|
||||
overflow-x: hidden !important;
|
||||
|
|
@ -201,13 +204,18 @@ html, body {
|
|||
}
|
||||
|
||||
/* Force any wide elements to fit */
|
||||
pre, code, .code-block, .code-section {
|
||||
pre, code, .code-block {
|
||||
max-width: calc(100vw - 32px) !important;
|
||||
overflow-wrap: break-word !important;
|
||||
word-break: break-all !important;
|
||||
white-space: pre-wrap !important;
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
.code-section {
|
||||
max-width: calc(100vw - 32px) !important;
|
||||
overflow-x: hidden !important;
|
||||
white-space: normal !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Recovery modal states */
|
||||
|
|
@ -277,7 +285,7 @@ html, body {
|
|||
<div class="trust-label">Avg. generation time</div>
|
||||
</div>
|
||||
<div class="trust-item">
|
||||
<div class="trust-num">99.9%</div>
|
||||
<div class="trust-num">99.5%</div>
|
||||
<div class="trust-label">Uptime SLA</div>
|
||||
</div>
|
||||
<div class="trust-item">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue