右侧按钮-帮助列表超出没有隐藏
This commit is contained in:
parent
fccb96ebb5
commit
d3ed2727ef
|
|
@ -269,6 +269,9 @@ li.ant-menu-item{
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
a{
|
a{
|
||||||
display: block;
|
display: block;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
&:hover{
|
&:hover{
|
||||||
background-color: #D1E9FF;
|
background-color: #D1E9FF;
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ function SiderBar() {
|
||||||
{
|
{
|
||||||
list && list.map((i,k)=>{
|
list && list.map((i,k)=>{
|
||||||
return(
|
return(
|
||||||
<li><a href={`${i.url}`} target="_blank">{i.question}</a></li>
|
<li><a href={`${i.url}`} title={i.question} target="_blank">{i.question}</a></li>
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue