itismyskillmarket 1.3.8 → 1.3.9
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.
- package/gui/index.html +1 -1
- package/gui/style.css +3 -0
- package/package.json +1 -1
package/gui/index.html
CHANGED
package/gui/style.css
CHANGED
|
@@ -109,6 +109,7 @@ nav {
|
|
|
109
109
|
.main-content {
|
|
110
110
|
flex: 1;
|
|
111
111
|
overflow-y: auto;
|
|
112
|
+
min-height: 0; /* flex 子项必须显式允许收缩 */
|
|
112
113
|
padding: 30px;
|
|
113
114
|
}
|
|
114
115
|
|
|
@@ -118,6 +119,8 @@ nav {
|
|
|
118
119
|
|
|
119
120
|
.view.active {
|
|
120
121
|
display: block;
|
|
122
|
+
overflow-y: auto;
|
|
123
|
+
min-height: 0;
|
|
121
124
|
}
|
|
122
125
|
|
|
123
126
|
.view-header {
|