Skip to content

Commit

Permalink
iPhone bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred Heusschen committed Mar 8, 2019
1 parent 5ee6184 commit 4f2cbae
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "mmenu-light",
"version" : "1.0.1",
"version" : "1.0.2",
"authors" : "Fred Heusschen <info@frebsite.nl>",
"license" : "CC-BY-4.0",
"description" : "The (extremely) lightweight alternative to the mmenu.js plugin for creating off-canvas mobile menus with the exact look and feel.",
Expand Down
2 changes: 1 addition & 1 deletion dist/mmenu-light.css

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

2 changes: 1 addition & 1 deletion dist/mmenu-light.es6.js

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

2 changes: 1 addition & 1 deletion dist/mmenu-light.js

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

2 changes: 1 addition & 1 deletion dist/mmenu-light.umd.js

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

2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mmenu-light",
"version": "1.0.1",
"version": "1.0.2",
"main": "dist/mmenu.js",
"author": "Fred Heusschen <info@frebsite.nl>",
"license": "CC-BY-4.0",
Expand Down
3 changes: 3 additions & 0 deletions src/mmenu-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ $module: '.mm';
width: 100%;
overflow: hidden;
overflow-y: scroll;
clip: rect(0,0,0,0);
border-top-width: 1px;
color: var( --mm-color );
cursor: default;
Expand All @@ -133,6 +134,7 @@ $module: '.mm';
// Listview opened.
&#{$module}--open {
left: 0;
clip: auto;
}

// Child listview opened.
Expand All @@ -144,6 +146,7 @@ $module: '.mm';
// First level listview.
> ul {
left: 0;
clip: auto;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/mmenu-light.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* mmenu-light v1.0.1
* mmenu-light v1.0.2
* mmenujs.com/mmenu-light
*
* Copyright (c) Fred Heusschen
Expand Down

0 comments on commit 4f2cbae

Please sign in to comment.