forked from Gitlink/forgeplus-react
右侧按钮-帮助列表超出没有隐藏
This commit is contained in:
parent
70af7dae5f
commit
09bf75c6c3
|
@ -269,6 +269,9 @@ li.ant-menu-item{
|
|||
margin-bottom: 10px;
|
||||
a{
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
&:hover{
|
||||
background-color: #D1E9FF;
|
||||
|
|
|
@ -41,7 +41,7 @@ function SiderBar() {
|
|||
{
|
||||
list && list.map((i,k)=>{
|
||||
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