Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions icons/molab-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions scripts/css-minify/buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
background-color: color-mix(in srgb, var(--color-card-hover) 50%, transparent);
text-decoration: none;
line-height: 24px;
white-space: nowrap;
cursor: pointer;
transition: all 0.2s ease;
margin-bottom: 1.5rem;
Expand Down
22 changes: 22 additions & 0 deletions snippets/_includes/molab-link.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
export const MolabLink = ({ url }) => (
<a
href={url}
target="_blank"
rel="noopener noreferrer"
className="try-product-link"
>
<span
aria-hidden="true"
style={{
display: "inline-block",
width: "20px",
height: "20px",
flexShrink: 0,
backgroundColor: "currentColor",
WebkitMask: "url('/icons/molab-logo.svg') center / contain no-repeat",
mask: "url('/icons/molab-logo.svg') center / contain no-repeat",
}}
/>
Open in molab
</a>
);
Loading