itismyskillmarket 1.3.18 → 1.3.19
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/style.css +9 -1
- package/package.json +1 -1
package/gui/style.css
CHANGED
|
@@ -25,13 +25,18 @@
|
|
|
25
25
|
box-sizing: border-box;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
html, body {
|
|
29
|
+
height: 100%;
|
|
30
|
+
margin: 0;
|
|
31
|
+
padding: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
28
34
|
body {
|
|
29
35
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
30
36
|
background: var(--bg-primary);
|
|
31
37
|
color: var(--text-secondary);
|
|
32
38
|
display: flex;
|
|
33
39
|
flex-direction: column;
|
|
34
|
-
height: 100vh;
|
|
35
40
|
overflow: hidden;
|
|
36
41
|
}
|
|
37
42
|
|
|
@@ -106,6 +111,7 @@ body {
|
|
|
106
111
|
flex: 1;
|
|
107
112
|
overflow-y: auto;
|
|
108
113
|
min-height: 0;
|
|
114
|
+
height: 0;
|
|
109
115
|
padding: 20px 28px;
|
|
110
116
|
}
|
|
111
117
|
|
|
@@ -115,6 +121,8 @@ body {
|
|
|
115
121
|
|
|
116
122
|
.view.active {
|
|
117
123
|
display: block;
|
|
124
|
+
overflow-y: auto;
|
|
125
|
+
min-height: 0;
|
|
118
126
|
}
|
|
119
127
|
|
|
120
128
|
.view-header {
|