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 includes/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<article class="markdown-body width-full">
<div class="d-lg-flex flex-justify-between">
<div class="d-block d-lg-none">{% include article-version-switcher %}</div>
<div class="d-flex flex-items-center" style="height: 39px;">
<div class="d-flex flex-items-center breadcrumbs-wrapper">
{% include breadcrumbs %}
</div>
<div class="d-none d-lg-block">{% include article-version-switcher %}</div>
Expand Down
4 changes: 2 additions & 2 deletions layouts/graphql-explorer.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<main class="container-xl px-3 px-md-6 my-4 my-lg-4 d-xl-flex">
<article class="markdown-body width-full">
<div class="d-lg-flex flex-justify-between">
<div class="d-flex flex-items-center" style="height: 39px;">
<div class="d-flex flex-items-center breadcrumbs-wrapper">
{% include breadcrumbs %}
</div>
</div>

<h1 class="border-bottom-0">{{ page.title }}</h1>

<div class="mt-2">
<div>
<iframe id="graphiql" class="graphql-explorer" scrolling="no" src="{{ graphql.explorerUrl }}">
Expand Down
6 changes: 6 additions & 0 deletions stylesheets/article.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@
/* Breadcrumbs
------------------------------------------------------------------------------*/

.breadcrumbs-wrapper {
@include breakpoint(xl) {
height: 39px;
}
}

.breadcrumbs a:not(:last-child)::after, .breadcrumbs span:not(:last-child)::after {
content: '/';
color: $gray-400;
Expand Down