Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 04fd061

Browse files
author
dpatanin
committed
basic styling
1 parent f661e6b commit 04fd061

2 files changed

Lines changed: 11 additions & 12 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Currently docs use the same style as the integrations

src/templates/doc.js

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
import React from 'react';
22
import { graphql } from 'gatsby';
33
import Layout from '../components/Layout';
4+
import Sidebar from '../components/Sidebar.js';
45

5-
const docs = ({ data }) => {
6-
const { title } = data.markdownRemark.frontmatter;
6+
const docs = ({ data, location }) => {
77
const { html } = data.markdownRemark;
88
return (
9-
<Layout bodyClass="doc">
10-
<div className="strip strip-white strip-diagonal">
11-
<div className="container pt-4 pt-md-10">
12-
<div className="row justify-content-start">
13-
<div className="col-12 col-md-8">
14-
<div className="team">
15-
<h1 className="title">{title}</h1>
16-
<div className="content" dangerouslySetInnerHTML={{ __html: html }} />
17-
</div>
18-
</div>
9+
<Layout bodyClass="integration">
10+
<div className="sidebar-wrapper">
11+
<div id="content">
12+
<div className="container-fluid" id="integration-doc">
13+
<div
14+
className="content"
15+
dangerouslySetInnerHTML={{ __html: html }}
16+
/>
1917
</div>
2018
</div>
2119
</div>

0 commit comments

Comments
 (0)