ros.grant.common 2.0.1221 → 2.0.1224
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,6 +1,6 @@
|
|
|
1
1
|
.page-container {
|
|
2
2
|
display: flex;
|
|
3
|
-
flex-direction:
|
|
3
|
+
flex-direction: row;
|
|
4
4
|
min-height: 100vh;
|
|
5
5
|
|
|
6
6
|
.page-content {
|
|
@@ -229,6 +229,7 @@
|
|
|
229
229
|
min-height: 100%;
|
|
230
230
|
position: relative;
|
|
231
231
|
padding: 30px 24px;
|
|
232
|
+
margin-top: 72px;
|
|
232
233
|
|
|
233
234
|
@media (max-width: 991px) {
|
|
234
235
|
padding: 24px 20px;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.page-wrapper {
|
|
2
|
+
.page-activity-navigation {
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
justify-content: space-between;
|
|
6
|
+
max-width: 1096px;
|
|
7
|
+
margin: 0 auto;
|
|
8
|
+
|
|
9
|
+
&__link {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: center;
|
|
13
|
+
margin: 0 -8px;
|
|
14
|
+
color: var(--Main2);
|
|
15
|
+
font-size: 16px;
|
|
16
|
+
line-height: 125%;
|
|
17
|
+
font-weight: bold;
|
|
18
|
+
|
|
19
|
+
&_prev {
|
|
20
|
+
margin-right: auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&_next {
|
|
24
|
+
margin-left: auto;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
svg {
|
|
28
|
+
margin: 0 8px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
package/package.json
CHANGED