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
1 change: 1 addition & 0 deletions website/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ keywords:
description: Query, deploy and manage Snowflake resources using SQL
custom_edit_url: null
image: /img/stackql-snowflake-provider-featured-image.png
id: provider-intro
---

import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
Expand Down
1 change: 1 addition & 0 deletions website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const providerTitle = config.title.replace(/^StackQL /, '').replace(/ Provider$/
{
type: 'category',
label: `${providerTitle} Provider`,
link: {type: 'doc', id: 'provider-intro'},
items: [{type: 'autogenerated', dirName: '.'}]
},
],
Expand Down
15 changes: 14 additions & 1 deletion website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -242,4 +242,17 @@ img[class="vhsImage"] {
.vhsImage-container,
div:has(> .vhsImage) {
margin: 40px 0;
}
}

/* provider doc column */
.providerDocColumn {
width: calc(50% - var(--ifm-spacing-horizontal));
float: left;
padding-left: var(--ifm-list-margin);
}

@media screen and (max-width: 600px) {
.providerDocColumn {
width: 100%;
}
}
Loading