隐藏不必要的滚动条

This commit is contained in:
fofolee 2022-04-19 00:27:21 +08:00
parent ca01808c93
commit 1c1ddd0f59
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,10 @@
<template>
<div
class="absolute-full"
:style="{ background: $q.dark.isActive ? 'var(--q-dark-page)' : '#ffffff' }"
:style="{
background: $q.dark.isActive ? 'var(--q-dark-page)' : '#ffffff',
overflow: 'hidden',
}"
>
<!-- 命令设置栏 -->
<CommandSideBar

View File

@ -179,6 +179,7 @@
maximized
:transition-show="newCommandDirect ? '' : 'slide-up'"
transition-hide="slide-down"
style="overflow: hidden"
>
<CommandEditor
ref="commandEditor"