-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 1.32 KB
/
style.css
File metadata and controls
43 lines (37 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* ── Inline code: disable mid-word hyphenation ──────────────────────
Mintlify defaults to `hyphens: auto` and `overflow-wrap: anywhere`,
which produces fake hyphens inside identifiers (e.g.
`intent.fundingInstruc-tion`). Force breaks at natural points only,
never in the middle of a token. */
:not(pre) > code {
hyphens: none !important;
-webkit-hyphens: none !important;
word-break: normal !important;
overflow-wrap: normal !important;
white-space: nowrap !important;
}
/* ── Navbar: Dashboard button ────────────────────────────────────── */
.navbar-link a {
border: 1px solid rgba(21, 128, 61, 0.25);
border-radius: 10px;
padding: 7px 22px !important;
font-size: 0.8125rem;
letter-spacing: 0.02em;
font-weight: 500;
color: rgba(21, 128, 61, 0.85) !important;
transition: all 0.25s ease;
}
.dark .navbar-link a {
border-color: rgba(24, 226, 153, 0.2);
color: rgba(24, 226, 153, 0.7) !important;
}
.navbar-link a:hover {
border-color: rgba(21, 128, 61, 0.5);
color: #15803D !important;
background: rgba(21, 128, 61, 0.04);
}
.dark .navbar-link a:hover {
border-color: rgba(24, 226, 153, 0.4);
color: #18E299 !important;
background: rgba(24, 226, 153, 0.06);
}