瀏覽代碼

style(css): 修复提示引导信息宽度问题并优化标签页布局- 修复了提示引导信息宽度问题,通过添加 CSS 规则将 .el-popper 的宽度设置为 unset
- 优化了标签页布局,为 .el-tabs--top 类添加 flex-direction: column样式

msgroup 2 月之前
父節點
當前提交
6d523d88e5
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/main/webapp/static/css/app.css

+ 4 - 0
src/main/webapp/static/css/app.css

@@ -197,4 +197,8 @@ textarea::-webkit-input-placeholder {
 /**提示引导信息宽度问题**/
 .el-popper {
     width: unset!important;
+}
+
+.el-tabs--top {
+    flex-direction: column;
 }