Skip to content

Commit 49b7c32

Browse files
committed
updates
1 parent 4df9317 commit 49b7c32

File tree

12 files changed

+25
-29
lines changed

12 files changed

+25
-29
lines changed

assets/css/components.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838
@apply bg-gray-50 dark:bg-gray-900;
3939
}
4040
.admonition-header {
41-
@apply flex items-center gap-2;
41+
@apply flex flex-wrap items-center gap-2;
4242
}
4343
.admonition-title {
4444
@apply font-semibold;
4545
}
4646
.admonition-content {
47-
@apply min-w-0 flex-1;
47+
@apply w-full min-w-0 flex-1 flex-wrap overflow-x-auto break-words;
4848
color: var(--tw-prose-body);
4949
}
5050
.admonition-note {

assets/css/global.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,12 @@ input[type="search"]::-ms-clear {
6363
hr {
6464
@apply mt-8 mb-4;
6565
}
66-
> h1 {
67-
@apply mt-3! mb-5! text-4xl!;
66+
:where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
67+
color: var(--tw-prose-headings);
68+
font-weight: 500 !important;
69+
margin-top: 0;
70+
margin-bottom: 0.2em !important;
71+
line-height: 1.1111111;
6872
}
6973
> h2 {
7074
@apply mt-5! mb-3! text-3xl!;

assets/css/utilities.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
@utility navbar-group-font-title {
122122
font-size: var(--color-navbar-group-font-title-size);
123123
@apply font-semibold uppercase;
124-
color: var(--color-navbar-text-dark);
124+
color: var(--color-navbar-text);
125125
.dark & {
126126
color: var(--color-navbar-text-dark);
127127
}
File renamed without changes.

content/manuals/ai/mcp-catalog-and-toolkit/toolkit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ The following example assumes you have already installed and set up Claude Deskt
5050
Take a screenshot of docs.docker.com and then invert the colors
5151
```
5252

53-
Once you've given your consent to use the new tools, Claude spins up the Puppeteer MCP server inside a container, navigates to the target URL, captures and modify the page, and returns the screenshot.
53+
Once you've given your consent to use the new tools, Claude spins up the Puppeteer MCP server inside a container, navigates to the target URL, captures and modify the page, and returns the screenshot.

hugo_stats.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
"border-gray-200",
180180
"border-gray-300",
181181
"border-gray-400",
182-
"border-gray-700",
182+
"border-gray-600",
183183
"border-green-400",
184184
"border-l-2",
185185
"border-l-magenta-light",
@@ -524,7 +524,8 @@
524524
"text-gray",
525525
"text-gray-100",
526526
"text-gray-200",
527-
"text-gray-700",
527+
"text-gray-400",
528+
"text-gray-600",
528529
"text-gray-800",
529530
"text-left",
530531
"text-lg",

layouts/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ <h1 class="text-2xl">Get Docker</h1>
6767
<img
6868
class="dark:hidden"
6969
alt="Low-fi desktop app"
70-
src="/assets/images/app-wf-1.svg"
70+
src="/assets/images/app-wf-light-1.svg"
7171
/>
7272
<img
7373
class="hidden dark:block"
7474
alt="Low-fi desktop app"
75-
src="/assets/images/app-wf-1.svg"
75+
src="/assets/images/app-wf-dark-1.svg"
7676
/>
7777
</div>
7878
</div>
@@ -191,12 +191,12 @@ <h2 class="font-medium">
191191
<img
192192
class="dark:hidden"
193193
alt="Low-fi desktop app"
194-
src="/assets/images/app-wf-2.svg"
194+
src="/assets/images/app-wf-light-2.svg"
195195
/>
196196
<img
197197
class="hidden dark:block"
198198
alt="Low-fi desktop app"
199-
src="/assets/images/app-wf-2.svg"
199+
src="/assets/images/app-wf-dark-2.svg"
200200
/>
201201
</div>
202202
</div>
Lines changed: 0 additions & 5 deletions
Loading

layouts/partials/breadcrumbs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
id="breadcrumbs"
33
{{- $breadcrumbTitles := slice }}
44
data-pagefind-ignore
5-
class="mb-4 flex min-w-0 items-center gap-3 text-gray-200 dark:text-gray-300"
5+
class="mb-4 flex min-w-0 items-center gap-2 text-gray-400 dark:text-gray-300"
66
>
77
{{ range .Ancestors.Reverse }}
88
{{ $breadcrumbTitles = $breadcrumbTitles | append .LinkTitle }}

layouts/partials/components/card.html

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="card not-prose">
1+
<div class="card">
22
{{ if .link }}
33
<a href="{{ .link }}" class="card-link">
44
{{ end }}
@@ -8,14 +8,10 @@
88
{{ end }}
99
{{ with .icon }}
1010
<div class="card-icon">
11-
{{ if (and (in . "/") (not (in . "svg"))) }}
11+
{{ if (in . "/") }}
1212
<img class="card-img" src="{{ . }}" alt="">
13-
{{ else if (in . "svg") }}
14-
<span class="card-img svg">
15-
{{ partial "utils/svg" . }}
16-
</span>
1713
{{ else }}
18-
<span class="card-img svg">
14+
<span class="card-img">
1915
{{ partial "icon" . }}
2016
</span>
2117
{{ end }}

0 commit comments

Comments
 (0)