Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ import { CopyPromptButton } from '/snippets/copy-prompt-button.jsx';
<h3 style={{ margin: 0, fontSize: '1.5rem', fontWeight: 600 }}>fast setup</h3>
<div className="tinker-box-row">
<div style={{ flexShrink: 0 }}>
<img src="/images/tinker-bot.svg" alt="" style={{ width: '146px', height: 'auto' }} />
<img src="/images/tinker-bot.svg" alt="" className="block dark:hidden" style={{ width: '146px', height: 'auto' }} />
<img src="/images/tinker-bot-dark.svg" alt="" className="hidden dark:block" style={{ width: '146px', height: 'auto' }} />
</div>
<div className="tinker-box-content">
<p style={{ margin: 0, fontSize: '0.9375rem', lineHeight: 1.6, opacity: 0.8 }}>
Expand Down
3 changes: 0 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,6 @@ html.dark {
--btn-border: #EDEEF0;
}

/* hero bot dark recolor */
html.dark img[src*="/images/tinker-bot.svg"] { content: url("/images/tinker-bot-dark.svg"); }

/* warning callout — selector depends on mintlify's yellow-* classes; renames silently break this */
html.dark .callout[class*="yellow"] {
background-color: rgba(237, 238, 240, 0.03) !important;
Expand Down
Loading