Fix page body not being scrollable in admin layout (#11893)
Hide navigation behind hamburger icon on small screens in admin layout
This commit is contained in:
parent
37ccafec8f
commit
b9a8b38844
4 changed files with 142 additions and 29 deletions
|
@ -247,6 +247,16 @@ function main() {
|
|||
|
||||
input.readonly = oldReadOnly;
|
||||
});
|
||||
|
||||
delegate(document, '.sidebar__toggle__icon', 'click', () => {
|
||||
const target = document.querySelector('.sidebar ul');
|
||||
|
||||
if (target.style.display === 'block') {
|
||||
target.style.display = 'none';
|
||||
} else {
|
||||
target.style.display = 'block';
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
loadPolyfills().then(main).catch(error => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue