@fragments-sdk/ui 0.6.0 → 0.6.1
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/package.json
CHANGED
|
@@ -35,11 +35,13 @@
|
|
|
35
35
|
@include below-md {
|
|
36
36
|
grid-template-areas:
|
|
37
37
|
'header'
|
|
38
|
-
'main'
|
|
38
|
+
'main'
|
|
39
|
+
'aside';
|
|
39
40
|
grid-template-columns: 1fr;
|
|
40
41
|
grid-template-rows:
|
|
41
42
|
var(--appshell-header-height, 56px)
|
|
42
|
-
1fr
|
|
43
|
+
1fr
|
|
44
|
+
auto;
|
|
43
45
|
transition: none; // No column transition on mobile
|
|
44
46
|
}
|
|
45
47
|
}
|
|
@@ -55,7 +57,8 @@
|
|
|
55
57
|
@include below-md {
|
|
56
58
|
grid-template-areas:
|
|
57
59
|
'header'
|
|
58
|
-
'main'
|
|
60
|
+
'main'
|
|
61
|
+
'aside';
|
|
59
62
|
grid-template-columns: 1fr;
|
|
60
63
|
}
|
|
61
64
|
}
|
|
@@ -165,8 +168,8 @@
|
|
|
165
168
|
overflow: hidden;
|
|
166
169
|
|
|
167
170
|
@include below-md {
|
|
168
|
-
margin: var(--fui-space-2, $fui-space-2);
|
|
169
171
|
border-radius: var(--fui-radius-md, $fui-radius-md);
|
|
172
|
+
width: 100%;
|
|
170
173
|
}
|
|
171
174
|
}
|
|
172
175
|
|
|
@@ -206,8 +209,11 @@
|
|
|
206
209
|
background-color: var(--fui-bg-primary, $fui-bg-primary);
|
|
207
210
|
overflow-y: auto;
|
|
208
211
|
|
|
209
|
-
//
|
|
212
|
+
// Stack below main on mobile
|
|
210
213
|
@include below-md {
|
|
211
|
-
|
|
214
|
+
position: static;
|
|
215
|
+
width: 100%;
|
|
216
|
+
height: auto;
|
|
217
|
+
border-top: 1px solid var(--fui-border, $fui-border);
|
|
212
218
|
}
|
|
213
219
|
}
|