Skip to content

Commit

Permalink
Fix app-navigation-toggle height and small typo
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliushaertl committed Jun 19, 2017
1 parent 882bf77 commit 630104c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ button.button-inline:hover {
}

#app-navigation-toggle {
width: 45px;
height: 40px;
width: 44px;
height: 44px;
cursor: pointer;
opacity: 1;
display: inline-block !important;
Expand Down
4 changes: 2 additions & 2 deletions js/app/Run.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ app.run(function ($document, $rootScope, $transitions, BoardService) {

$('#app-navigation-toggle').click(function(){
if($(window).width() > 768) {
$('#app-navigation').toggle('hidde');
$('#app-navigation').toggle('hidden');
} else {
if(snapper.state().state == 'left'){
if(snapper.state().state === 'left'){
snapper.close();
} else {
snapper.open('left');
Expand Down

0 comments on commit 630104c

Please sign in to comment.