fix: 修复搜索结果框移动端下显示不全问题
This commit is contained in:
parent
5e466ea5e6
commit
492260d5ea
|
|
@ -62,6 +62,11 @@ body .vuepress-plugin-demo-block__wrapper
|
||||||
.suggestions
|
.suggestions
|
||||||
overflow: auto
|
overflow: auto
|
||||||
max-height: calc(100vh - 6rem)
|
max-height: calc(100vh - 6rem)
|
||||||
|
@media (max-width: 719px) {
|
||||||
|
width: 90vw;
|
||||||
|
min-width: 90vw!important;
|
||||||
|
margin-right: -20px;
|
||||||
|
}
|
||||||
.highlight
|
.highlight
|
||||||
color: $accentColor
|
color: $accentColor
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue