Skip to content

Commit e6407bd

Browse files
author
Joseph Lowinske
committed
implement QA feedback
1 parent 607ae1d commit e6407bd

File tree

6 files changed

+30
-20
lines changed

6 files changed

+30
-20
lines changed

_layouts/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div id="main-content">
1313
<div class="sidebar-row">
1414
{% if page.no_sidebar == true %}
15-
<div class="content-col">
15+
<div class="content-col no-sidebar">
1616
{% else %}
1717
{% include sidebar.html %}
1818
<div class="content-col content-col-border {% if page.url == '/' %}content-col--landing{% endif %}">

css/components/_search.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,15 @@ li.search-wrap {
7070
height: 38px;
7171
width: 35px;
7272
border-radius: 50%;
73+
cursor: pointer;
7374
outline: none;
7475

75-
@include at-query($min, $screen-md) { right: 20px; }
76+
@include at-query($min, $screen-md) { right: 0; }
7677

7778
&:before, &:after {
7879
content: '';
7980
position: absolute;
80-
height: 1px;
81+
height: 2px;
8182
width: 11px;
8283
top: 50%;
8384
left: 6px;

css/components/_toc.scss

+7-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
.toc-col {
44
display: none;
55

6-
@include at-query($min, 1500px) {
7-
margin: 30px;
6+
@include at-query($min, 1072px) {
7+
padding: 30px 30px 30px 0;
88
min-width: 360px;
99
display: inline-block;
1010
}
@@ -14,11 +14,15 @@
1414
display: block;
1515
max-width: 500px;
1616

17-
@include at-query($min, 1500px) {
17+
@include at-query($min, 1072px) {
1818
display: none;
1919
}
2020
}
2121

22+
#toc-right {
23+
max-width: 100%;
24+
}
25+
2226
#toc,
2327
#toc-right {
2428

css/customstyles.css

+13-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/customstyles.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/layouts/_content.scss

+5-4
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,22 @@
1818
.content-col {
1919
padding-top: 50px;
2020
padding-bottom: 100px;
21+
max-width: 100%;
2122

2223
@include at-query($min, $screen-md) {
2324
min-height: 625px;
2425
padding-left: 365px;
2526
padding-right: 30px;
2627

28+
&.no-sidebar {
29+
padding-left: 30px;
30+
}
31+
2732
&-border {
2833
border-left: 1px solid $cl_gray_medium;
2934
}
3035
}
3136

32-
@include at-query($min, 1500px) {
33-
padding-right: 0;
34-
}
35-
3637
&--landing {
3738
padding-top: 30px;
3839
}

0 commit comments

Comments
 (0)