You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These are supposed to be used at the top level of all spaces.
9
+
Used at the top level of all other spaces.
10
10
11
-
***ViewPort** - a top level space. This space will take over the full viewport of the browser window. Resizing the browser window will automatically adjust the size of this space and all the nested spaces.
11
+
***ViewPort** - this space will take over the full viewport of the browser window. Resizing the browser window will automatically adjust the size of this space and all the nested spaces.
12
12
13
13
***Fixed** - this space can be given a height and optionally a width (by default it will size to 100% of it's container). All nested spaces will be contained within this fixed size space.
14
14
15
-
## Inner spaces
15
+
###Inner spaces
16
16
17
-
These can be used with the top-level spaces ViewPort and Fixed and within other inner spaces.
17
+
These can be used within the top-level spaces **ViewPort** and **Fixed** and within other inner spaces.
18
18
19
19
***Left** - a space anchored to the left of the parent container/space. A size can be specified in pixels to determine its width.
20
20
@@ -101,7 +101,7 @@ Additional properties can be specified to constrain the resizing:
101
101
***minimumSize** - minimum size the space can be resized (default is 10px)
102
102
***maximumSize** - maximum size the space can be resized
103
103
104
-
*** Resizable spaces with constrained minimum and maximum sizes
104
+
###Resizable spaces with constrained minimum and maximum sizes
105
105
106
106
```typescript
107
107
const App = () => (
@@ -112,11 +112,12 @@ const App = () => (
112
112
</Space.Fixed>
113
113
)
114
114
```
115
-
** Nested spaces
115
+
116
+
## Nested spaces
116
117
117
118
Spaces can be nested within other spaces to create complex layouts.
118
119
119
-
*** Left/right spaces nested within top/full/bottom spaces
120
+
###Left/right spaces nested within top/full/bottom spaces
0 commit comments