ember-mobile-menu
Version:
A draggable sidebar menu for Ember.
17 lines (16 loc) • 358 B
CSS
.mobile-menu__tray {
position: absolute;
top: 0;
height: var(--mobile-menu-height);
/* Avoid Chrome to see Safari hack */
overflow-y: auto;
touch-action: pan-y;
background: #fff;
will-change: transform;
}
@supports (-webkit-touch-callout: none) {
.mobile-menu__tray {
/* The hack for Safari */
height: -webkit-fill-available;
}
}