我如何使用react-burger-menu創(chuàng)建一個(gè)沒(méi)有滾動(dòng)條的菜單?我試著在css中添加和改變不同的屬性,但是大多數(shù)都沒(méi)有任何實(shí)際的效果。這是打開(kāi)菜單和我的css的圖像:
(https://i.stack.imgur.com/UyFBW.png)
/* Nav */
.bm-burger-button {
position: relative;
right: 10px;
padding: 0;
margin: 0;
width: 26px;
height: 20px;
margin-top: 0px;
padding-top: 0px;
justify-content: center;
align-items: center;
display: flex;
}
.bm-burger-bars {
background: #373a47;
}
.bm-burger-bars-hover {
background: #a90000;
}
.bm-cross-button {
height: 24px;
width: 24px;
}
.bm-cross {
background: #bdc3c7;
}
.bm-menu-wrap {
position: relative;
overflow: hidden;
margin-top: -30px;
padding-bottom: px;
}
.bm-menu {
background: #373a47;
padding: 2.5em 1.5em 0;
font-size: 1.15em;
position: relative;
overflow: hidden;
}
.bm-morph-shape {
fill: #373a47;
}
.bm-item-list {
color: #b8b7ad;
padding: 0.8em;
height: 200px;
}
.bm-item {
display: inline-block;
color: #d1d1d1;
margin-bottom: 10px;
text-align: left;
text-decoration: none;
transition: color 0.2s;
cursor: pointer;
}
.bm-item:hover {
color: #ffffff;
}
.bm-overlay {
background: rgba(0, 0, 0, 0.3);
}
我嘗試更改菜單的高度和菜單換行屬性。菜單最初也是偏移的,最后我不得不把它上移來(lái)覆蓋屏幕的上半部分。我肯定有更好的方法,但它對(duì)我正在做的事情有效。在我這樣做之前和之后,滾動(dòng)條都在那里,所以這不會(huì)導(dǎo)致它出現(xiàn)。非常感謝任何幫助。就html而言,它目前嵌套在應(yīng)用程序的標(biāo)題部分。