Skip to content

Commit

Permalink
rebuild docs
Browse files Browse the repository at this point in the history
  • Loading branch information
atomiks committed Mar 6, 2018
1 parent 8542b1c commit bb1a283
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
28 changes: 14 additions & 14 deletions docs/3df57813b7ec2de885ea6075ff46ed46.js

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1123,25 +1123,25 @@ <h4 data-type="HTML">HTML</h4><pre><code class="lang-html">&lt;div class="grid-l
&lt;/div&gt;
</code></pre>
<h4 data-type="CSS">CSS</h4><pre><code class="lang-css">.grid-layout {
display: grid;
grid-gap: 10px;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
"sidebar header header"
"sidebar content content"
"sidebar footer footer";
display: grid;
grid-gap: 10px;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
'sidebar header header'
'sidebar content content'
'sidebar footer footer';
}
.sidebar {
grid-area: sidebar;
grid-area: sidebar;
}
.content {
grid-area: content;
grid-area: content;
}
.header {
grid-area: header;
grid-area: header;
}
.footer {
grid-area: footer;
grid-area: footer;
}
</code></pre>
<h4>Demo</h4>
Expand Down

0 comments on commit bb1a283

Please sign in to comment.