itismyskillmarket 1.3.18 → 1.3.20
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 +13 -3
- 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
|
|
|
@@ -104,8 +109,9 @@ body {
|
|
|
104
109
|
|
|
105
110
|
.main-content {
|
|
106
111
|
flex: 1;
|
|
107
|
-
overflow-y: auto;
|
|
108
112
|
min-height: 0;
|
|
113
|
+
display: flex;
|
|
114
|
+
flex-direction: column;
|
|
109
115
|
padding: 20px 28px;
|
|
110
116
|
}
|
|
111
117
|
|
|
@@ -114,7 +120,11 @@ body {
|
|
|
114
120
|
}
|
|
115
121
|
|
|
116
122
|
.view.active {
|
|
117
|
-
display:
|
|
123
|
+
display: flex;
|
|
124
|
+
flex-direction: column;
|
|
125
|
+
flex: 1;
|
|
126
|
+
min-height: 0;
|
|
127
|
+
overflow-y: auto;
|
|
118
128
|
}
|
|
119
129
|
|
|
120
130
|
.view-header {
|