config-tools: change the tooltip width to 60%

Tooltip width was set to 50%. This could not just cut the line into
2 lines, for the line has to be cut by word. This would leave one
word on a new line, looks weird.

Set to 60% will solve this issue.

Tracked-On: #7541

Signed-off-by: Wu Zhou <wu.zhou@intel.com>
This commit is contained in:
Wu Zhou 2022-05-23 15:07:29 +08:00 committed by acrnsi-robot
parent 56602a42f0
commit ed70da3ed6
1 changed files with 1 additions and 1 deletions

View File

@ -200,6 +200,6 @@ export default {
}
.n-popover {
max-width: 50%;
max-width: 60%;
}
</style>