We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ae25fa commit 2765f55Copy full SHA for 2765f55
_sass/_sidebar.scss
@@ -13,7 +13,7 @@
13
@include clearfix();
14
margin-bottom: 1em;
15
16
- @media screen and (min-width: 1024px) {
+ @media screen and (min-width: $sidebar-min-width) {
17
position: fixed;
18
padding-top: $masthead-height;
19
}
@@ -30,6 +30,7 @@
30
31
32
@include breakpoint($x-large) {
33
+ max-width: $sidebar-link-max-width;
34
padding-right: 0;
35
36
_sass/_variables.scss
@@ -45,6 +45,12 @@ $type-size-8 : 0.625em; // ~10px
45
/* masthead properties */
46
$masthead-height : 50px;
47
48
+/* Sidebar properties */
49
+$sidebar-min-width : 1024px;
50
+$sidebar-link-max-width : 250px;
51
+
52
53
54
/*
55
Colors
56
========================================================================== */
0 commit comments