Bottom bar
EuiPageTemplate offers a quick way to
apply a bottom bar to your page layouts.EuiBottomBar is a simple wrapper component that does nothing but affix a dark bar (usually filled with buttons) to the bottom of the page. Use it when you have really long pages or complicated, multi-page forms. In the case of forms, only invoke it if a form is in a savable state.
Like many of our other wrapper components, EuiBottomBar accepts a
paddingSize
prop, which can be set to s | m (default) | l | none
.Positions
Bottom bars default to a fixed position, in a portal at the bottom of the browser window. Alternatively, you can change the position
to sticky
where it will render in place but stick to the window only as the window edge nears. The static
position reverts back to default DOM behavior.
You can also apply a different set of positioning locations just by adjusting them in with the top | right | bottom | left
props.
Displacement
There is an affordForDisplacement
prop (defaulting to true
), which determines whether the component makes room for itself by adding bottom padding equivalent to its own height on the document <body>
element. Setting this to false
can be useful to minimize scrollbar visibility but will cause the bottom bar to overlap body content.
Props
EuiBottomBar
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop usePortal# | Description and type Whether to wrap in an EuiPortal which appends the component to the body element. boolean | EuiPortalProps | Default value true |
Prop affordForDisplacement# | Description and type Whether the component should apply padding on the document body element to afford for its own displacement height. boolean | Default value true |
Prop position# | Description and type How to position the bottom bar against its parent. "fixed" | "static" | "sticky" | Default value fixed |
Prop paddingSize# | Description and type Padding applied to the bar. Default is 'm'. "s" | "m" | "l" | "none" | Default value m |