generated from mintlify/starter
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (34 loc) · 933 Bytes
/
style.css
File metadata and controls
40 lines (34 loc) · 933 Bytes
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
/* Wraps all code blocks to prevent overflow */
div.min-w-full > pre.language-shell {
white-space: pre-wrap; /* Wrap text */
word-break: break-word; /* Prevents overflow by breaking long words */
overflow-wrap: break-word; /* Ensures text breaks nicely */
}
.inline-card-header > a {
height: 100%;
}
/* Adjusts card padding */
.inline-card-header > a > div {
padding-left: 1.25rem;
padding-right: 1.25rem;
}
/* Displays the logo and title of a card inline */
.inline-card-header > a > div > div {
display: inline-block;
vertical-align: middle;
}
.inline-card-header > a > div > h2 {
display: inline-block;
vertical-align: middle;
margin: auto 0 auto 10px;
}
/* Adds back link styles to links within cards */
.inline-card-header div a {
text-decoration: none;
font-weight: 600;
border-bottom: 1px solid rgb(var(--primary-light)) !important;
}
/*
.inline-card-header > a > div {
color: blue;
} */