Skip to content

Commit

Permalink
Fix font styling and resize event
Browse files Browse the repository at this point in the history
  • Loading branch information
deronjohnson committed Aug 2, 2017
1 parent 2fb259b commit 0a7c180
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion css/customstyles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/customstyles.css.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions css/layouts/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ a:not([href]) {
@include avenir_h(16px);
line-height: 20px;
color: $cl_green;
text-transform: none;
letter-spacing: normal;
}

.arrow-down {
Expand Down
2 changes: 1 addition & 1 deletion js/customscripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ $(function() {
$mobile_menu.css('visibility', 'visible');
}

if (_viewport_width >= 992) {
if (_viewport_width > 992) {
$('#version-switcher').slideDown();
} else {
$('#version-switcher').slideUp();
Expand Down

0 comments on commit 0a7c180

Please sign in to comment.