@waweb/compendium.base-ui.layout.align
v0.0.1
Published
A set of CSS components to align elements.
Downloads
2
Maintainers
Readme
Align
A set of CSS components to align elements.
text
Same as css property text-align.
import { text } from "@bit/bit.base-ui.layout.align"
function A() {
return <div className={text.center}>a</div>
}
Breakpoints
Align elements according to html breakpoints.
import { text } from '@bit/bit.base-ui.layout.align';
function B() {
return <div className={classNames(text.left, text.md.center text.l.left)}>
b
</div>
}
Margin center
Same as margin-left: auto; margin-right: auto
.
import { marginCenter } from "@bit/bit.base-ui.layout.align"
function C() {
return <div className={classNames(marginCenter)}>this is centered</div>
}
Breakpoints:
- (default)
(all)
- xs
360px
- sm
480px
- md
768px
- l
920px
- lg
1080px
- xl
1440px