@litianxiang/portal-ui 0.1.3 → 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.
@@ -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,23 +65,20 @@
63
65
  line-height: 40px;
64
66
  }
65
67
 
68
+ // 面板主体样式
66
69
  .panel-body {
67
70
  border: 1px solid #ccc;
68
- border-top: none;
69
- padding: 16px;
70
71
  }
71
-
72
- .panel-form {
72
+ // 无顶部边框的面板主体样式
73
+ .panel-body--no-top {
73
74
  border: 1px solid #ccc;
74
75
  border-top: none;
75
76
  }
76
-
77
- .panel-no-header {
77
+ // 无顶部边框且有内边距的面板主体样式
78
+ .panel-body--padded-no-top {
78
79
  border: 1px solid #ccc;
79
- }
80
-
81
- .no-border-top {
82
80
  border-top: none;
81
+ padding: 16px;
83
82
  }
84
83
 
85
84
  .panel-title {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@litianxiang/portal-ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.js",