ros.grant.common 2.0.1193 → 2.0.1194
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.
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
.page-container {
|
|
2
2
|
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
3
4
|
min-height: 100vh;
|
|
4
5
|
|
|
5
6
|
.page-content {
|
|
7
|
+
display: flex;
|
|
8
|
+
width: 100%;
|
|
6
9
|
min-height: 100vh;
|
|
7
10
|
vertical-align: bottom;
|
|
8
11
|
|
|
@@ -226,7 +229,6 @@
|
|
|
226
229
|
min-height: 100%;
|
|
227
230
|
position: relative;
|
|
228
231
|
padding: 30px 24px;
|
|
229
|
-
margin-top: 72px;
|
|
230
232
|
|
|
231
233
|
@media (max-width: 991px) {
|
|
232
234
|
padding: 24px 20px;
|
|
@@ -326,26 +328,6 @@
|
|
|
326
328
|
}
|
|
327
329
|
}
|
|
328
330
|
|
|
329
|
-
.page-wrapper {
|
|
330
|
-
.page-container {
|
|
331
|
-
flex-direction: column;
|
|
332
|
-
|
|
333
|
-
.page-content {
|
|
334
|
-
display: flex;
|
|
335
|
-
width: 100%;
|
|
336
|
-
|
|
337
|
-
.page-sidebar {
|
|
338
|
-
position: sticky;
|
|
339
|
-
top: 0;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.page-inner {
|
|
343
|
-
margin-top: 0;
|
|
344
|
-
}
|
|
345
|
-
}
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
|
|
349
331
|
@media (min-width: 1440px) {
|
|
350
332
|
.page-container .card.info-baner {
|
|
351
333
|
justify-content: flex-start;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
.page-sidebar {
|
|
2
|
+
position: sticky;
|
|
3
|
+
top: 0;
|
|
4
|
+
min-width: 280px;
|
|
2
5
|
width: 280px;
|
|
3
|
-
position: fixed;
|
|
4
6
|
background: #fff;
|
|
5
|
-
top: 72px;
|
|
6
|
-
bottom: 0;
|
|
7
|
-
z-index: 100;
|
|
8
7
|
height: 100% !important;
|
|
9
8
|
transition: all 0.2s ease-in-out;
|
|
10
9
|
z-index: 11;
|
|
11
10
|
|
|
12
11
|
@media (max-width: 991px) {
|
|
12
|
+
position: fixed;
|
|
13
13
|
left: -100%;
|
|
14
14
|
}
|
|
15
15
|
|
package/package.json
CHANGED