@litianxiang/portal-ui 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1361,7 +1361,6 @@
1361
1361
  // 表格式表单布局
1362
1362
  .form-content {
1363
1363
  padding: 0;
1364
- border: 1px solid #ccc;
1365
1364
  font-size: 0; // 消除行内元素间隙
1366
1365
 
1367
1366
  .el-row {
@@ -48,10 +48,12 @@
48
48
 
49
49
 
50
50
  // ==================== 面板区块 ====================
51
+ // 面板外层容器样式
51
52
  .panel {
52
53
  margin: 0 10px 10px;
53
54
  }
54
55
 
56
+ // 面板头部样式
55
57
  .panel-header {
56
58
  display: flex;
57
59
  align-items: center;
@@ -63,14 +65,21 @@
63
65
  line-height: 40px;
64
66
  }
65
67
 
68
+ // 面板主体样式
66
69
  .panel-body {
67
70
  border: 1px solid #ccc;
68
- padding: 16px;
69
71
  }
70
-
71
- .no-border-top {
72
+ // 无顶部边框的面板主体样式
73
+ .panel-body--no-top {
74
+ border: 1px solid #ccc;
72
75
  border-top: none;
73
76
  }
77
+ // 无顶部边框且有内边距的面板主体样式
78
+ .panel-body--padded-no-top {
79
+ border: 1px solid #ccc;
80
+ border-top: none;
81
+ padding: 16px;
82
+ }
74
83
 
75
84
  .panel-title {
76
85
  font-size: 14px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@litianxiang/portal-ui",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.js",