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
2 changes: 1 addition & 1 deletion src/components/header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Header = () => {
</svg>
</a>
<nav className="flex-auto flex items-center">
<nav className="flex w-4/5">
<nav className="flex w-7/12">
<div className="flex items-stretch font-semibold ml-20">
<a className="btn btn-ghost btn-sm pr-2 rounded-btn" href={'/docs/'}>
Docs
Expand Down
3 changes: 2 additions & 1 deletion src/components/navcards.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
border: .1rem solid $light-grey;
border-radius: 2px;
@media (max-width: 767px) {
@apply w-full m-8;
@apply m-8;
width: 100%;
}
&:hover{
background: $black_haze;
Expand Down
2 changes: 2 additions & 0 deletions src/components/seo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ function SEO({ lang,
<script src="https://polyfill.io/v3/polyfill.min.js?features=default%2CArray.prototype.find%2CArray.prototype.includes%2CPromise%2CObject.assign%2CObject.entries" />
{/* Algolia API v4 IE11 support */}
<script src="https://polyfill.io/v3/polyfill.min.js?features=Promise%2CObject.entries%2CObject.assign" />
<script async defer type='text/javascript' charSet='utf-8' src='https://js.hsforms.net/forms/embed/v2.js' />
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/23422177.js"></script>

</Helmet>
);
Expand Down
2 changes: 1 addition & 1 deletion src/templates/page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ code[class*="language-"] {
width: 60%;
}
@media (min-width: 1024px) {
@apply w-1/5;
@apply w-2/5;
}
@media (max-width: 1279px) {
@apply p-0;
Expand Down